html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #f5f5f7;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.page-title h2,
h2.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.breadcrumb-text {
    color: #8a8a8a;
    font-size: 14px;
}

    .breadcrumb-text span {
        margin: 0 6px;
    }

.back-arrow {
    color: #7c3aed;
    text-decoration: none;
}

    .back-arrow:hover {
        color: #6418c3;
    }

.purple-btn {
    background: #6f2cff;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    white-space: nowrap;
}

    .purple-btn:hover {
        background: #5c1fe2;
        color: white;
    }

.pink-btn {
    background: rgba(227, 40, 175, 1);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
}

    .pink-btn:hover {
        color: white;
    }

.btn-outline-purple {
    border: 2px solid #6f2cff;
    color: #6f2cff;
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
}

    .btn-outline-purple:hover {
        background: #6f2cff;
        color: white;
    }

.btn-modal-back {
    background: #ffffff !important;
    border: 1px solid #bca1f5 !important;
    color: #6418c3 !important;
    font-weight: 700 !important;
    font-size: 13px;
    padding: 10px 26px !important;
    border-radius: 10px !important;
}

    .btn-modal-back:hover {
        background-color: #faf7ff !important;
    }

.cancel-btn {
    min-width: 120px;
    height: 48px;
    border: 1px solid #7c3aed;
    color: #7c3aed;
    border-radius: 12px;
    font-weight: 600;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .cancel-btn:hover {
        background: #f6f0ff;
        color: #7c3aed;
    }
.purple-text {
    color: #6f2cff;
}
.pink-text {
    color: rgba(227, 40, 175, 1);
}