/* Payment Sandbox Client Area Styles */
/* Styles specific to the ClientArea version of PaymentSandbox.cshtml */

.security-badge {
    background: rgba(44, 165, 141, 0.1);
    border: 1px solid rgba(44, 165, 141, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #2CA58D;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.plan-option {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option.selected {
    border-color: #2CA58D;
    background-color: rgba(44, 165, 141, 0.05);
}

.plan-option:hover {
    border-color: #2CA58D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 165, 141, 0.1);
}

.plan-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2CA58D;
}

.plan-discount {
    color: #dc3545;
    font-weight: bold;
}

.test-customers, .test-cards {
    margin-top: 10px;
}

.test-customer-item, .test-card-item {
    margin: 5px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #2CA58D;
}

.test-customer-link, .test-card-number {
    color: #2CA58D;
    text-decoration: none;
    font-weight: 500;
}

.test-customer-link:hover, .test-card-number:hover {
    color: #1a5f4a;
    text-decoration: underline;
}

.test-card-info {
    color: #6c757d;
    font-size: 0.85rem;
}

.test-customers-scroll, .test-cards-scroll {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    background: #f8f9fa;
    margin-top: 8px;
}

.test-customers-scroll::-webkit-scrollbar, .test-cards-scroll::-webkit-scrollbar {
    width: 6px;
}

.test-customers-scroll::-webkit-scrollbar-track, .test-cards-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.test-customers-scroll::-webkit-scrollbar-thumb, .test-cards-scroll::-webkit-scrollbar-thumb {
    background: #2CA58D;
    border-radius: 3px;
}

.test-customers-scroll::-webkit-scrollbar-thumb:hover, .test-cards-scroll::-webkit-scrollbar-thumb:hover {
    background: #1a5f4a;
}
