.kyc-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.account-type {
    color: #151B54;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
}

.kyc-status-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

h2 {
    color: #151B54;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.kyc-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.kyc-status-header h3 {
    color: #151B54;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge.completed {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.status-badge.pending {
    background-color: #FFF3E0;
    color: #E65100;
}

.status-badge.rejected {
    background-color: #FFEBEE;
    color: #C62828;
}

.verification-details {
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.detail-row .label {
    color: #666666;
    font-size: 14px;
}

.detail-row .value {
    color: #151B54;
    font-weight: 500;
    font-size: 14px;
}

.detail-row .value.red {
    color: #D32F2F;
}

.refresh-status-btn {
    width: 100%;
    padding: 12px;
    background-color: #0066FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 24px;
    transition: background-color 0.2s;
}

.refresh-status-btn:hover {
    background-color: #0052CC;
}

.refresh-status-btn:disabled {
    background-color: #E0E0E0;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .kyc-section {
        padding: 16px;
    }

    .kyc-status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .detail-row .value {
        width: 100%;
    }
}