.profile-page {
    overflow-y: auto;
}

.profile-box {
    background-color: rgba(227, 234, 244, 0.2);
    box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.24);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.profile-header {
    padding: 18px 0;
    color: rgba(0, 0, 12, 1);
    font-size: 14px;
    font-weight: 500;
    height: 64px;
}

.profile-body {
    overflow-y: auto;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.update-profile {
    height: 42px;
    border-radius: 50rem;
    width: 100px;
    color: rgba(18, 67, 245, 1);
    border: 1px solid rgba(18, 67, 245, 1) !important;
}

.status-circle-wrapper {
    width: 30px;
    height: 30px;
    border: 3px solid white;
}

.status-circle {
    width: 10px;
    height: 10px;
    background-color: white;
}

.kyc-status-box {
    font-size: 14px;
    color: rgba(0, 0, 12, 0.3);
    height: 100%;
    justify-content: flex-end;
    cursor: pointer;
}

.kyc-status-box span {
    padding: 8px 20px;
    border-radius: 50rem;
}

.kyc-status-box.active {
    color: rgba(0, 0, 12, 1);
}

.kyc-status-box.active span {
    background-color: rgba(227, 234, 244, 0.2);
}

.status-divider, .status-text-divider {
    border-radius: 50rem;
}

.status-divider {
    border: 2.2px solid rgba(255, 255, 255, 1);
    flex: 1;
    height: 2px;
}

.status-text-divider {
    width: 0px;
    height: 30px;
    border: 2.2px dashed rgba(0, 0, 0, 0.2);
}

.status-text-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.status-message {
    font-size: 14px;
}

.status-date {
    font-size: 12px;   
}

/* Form Styles */
.profile-body .form-label {
    font-weight: 600;
    color: #566a7f;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.profile-body .form-control {
    border-radius: 8px;
    border: 1px solid #d9dee3;
    padding: 0.625rem 1rem;
    transition: all 0.2s;
}

.profile-body .form-control:focus {
    border-color: #696cff;
    box-shadow: 0 0 0 3px rgba(105, 108, 255, 0.1);
}

.profile-body .form-control[readonly] {
    background-color: #f5f5f9;
    cursor: not-allowed;
}

.profile-body .form-control:not([readonly]) {
    background-color: #ffffff;
}

#profile-actions .btn {
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.edit-profile-btn {
    font-size: 0.875rem;
}

@media (max-width: 1099.98px) {
    .status-divider {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .profile-page .row {
        flex-direction: column;
    }
}
