/**
 * WHMCS Integration Styles
 * Custom styles for WHMCS integration elements
 */

/* WHMCS Products Grid - Professional Design */
.whmcs-products-grid {
    display: grid;
    gap: 30px;
    margin: 20px 0;
}

.whmcs-product-card {
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.whmcs-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.whmcs-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whmcs-product-card:hover::before {
    transform: scaleX(1);
}

/* Product Header */
.product-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-name {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    color: white;
}

.product-tagline {
    margin: 8px 0 0 0;
    font-size: 0.9em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Product Content */
.product-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Pricing Section */
.product-pricing {
    margin-bottom: 25px;
    text-align: center;
}

.price-option {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-option.featured {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: 2px solid #28a745;
    color: white;
    position: relative;
    transform: scale(1.05);
}

.price-option.featured:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ffc107;
    color: #212529;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-period {
    font-size: 0.9em;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-option.featured .price-period {
    opacity: 0.9;
}

.price-amount {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.price-option.featured .price-amount {
    color: white;
}

.setup-fee {
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 5px;
}

.price-option.featured .setup-fee {
    opacity: 0.9;
}

/* Features Section */
.product-features {
    margin-bottom: 25px;
    flex: 1;
}

.product-features h4 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    position: relative;
}

.product-features h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-description {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #6c757d;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f8f9fa;
    padding-left: 5px;
    border-radius: 4px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.feature-text {
    font-size: 0.9em;
    color: #495057;
    flex: 1;
}

/* Action Button */
.product-actions {
    text-align: center;
    margin-top: auto;
}

.whmcs-order-button {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.whmcs-order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whmcs-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.whmcs-order-button:hover::before {
    left: 100%;
}

.whmcs-order-button:active {
    transform: translateY(0);
}

/* Enhanced Interactive States */
.whmcs-product-card.card-hovered {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-header.header-hovered {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.price-option.option-active {
    border-color: #667eea;
    background: #f0f4ff;
    transform: scale(1.02);
}

.feature-item.feature-hovered {
    background: #f8f9fa;
    padding-left: 10px;
    border-radius: 6px;
}

.feature-icon.icon-pulse {
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.whmcs-order-button.button-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scale(1.05);
}

/* Ripple Effect */
.whmcs-order-button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Notification System */
#whmcs-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    max-width: 350px;
}

.notification-show {
    transform: translateX(0);
}

.notification-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    flex: 1;
    margin-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #dc3545;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

/* Loading States */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.check-loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

/* Error Messages */
.error-message {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #721c24;
    margin: 10px 0;
}

.error-message i {
    margin-right: 10px;
    font-size: 1.1em;
}

/* Accessibility Improvements */
.whmcs-product-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.whmcs-order-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .notification {
        max-width: calc(100vw - 40px);
        margin: 0 20px 10px 0;
    }
    
    .price-option.featured {
        transform: none;
    }
    
    .whmcs-product-card.card-hovered {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .notification {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .price-option.option-active {
        background: #4a5568;
        border-color: #63b3ed;
    }
    
    .feature-item.feature-hovered {
        background: #4a5568;
    }
    
    .error-message {
        background: #742a2a;
        border-color: #feb2b2;
        color: #fed7d7;
    }
}

/* WHMCS Single Product */
.whmcs-single-product {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.product-tagline {
    margin: 0;
    color: #6c757d;
    font-style: italic;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-option {
    text-align: center;
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: #0073aa;
    background: #f8f9fa;
}

.cycle-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.cycle-price {
    font-size: 1.3em;
    color: #0073aa;
    font-weight: 700;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* WHMCS Pricing Table */
.whmcs-pricing-table {
    margin: 30px 0;
}

.pricing-card {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 25px;
    background: #ffffff;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.plan-name {
    margin: 0 0 20px 0;
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
}

.plan-pricing {
    margin-bottom: 25px;
}

.monthly-price,
.annual-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.2em;
    font-weight: 700;
    color: #0073aa;
    line-height: 1;
}

.price-period {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 5px;
}

/* WHMCS Domain Checker */
.whmcs-domain-checker {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.domain-check-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.domain-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.check-button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.check-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.check-results {
    margin-top: 25px;
}

.result-item {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.result-item.available {
    background: #d4edda;
    border-left-color: #28a745;
}

.result-item.not-available {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.domain-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.domain-status {
    font-size: 0.95em;
    margin-bottom: 5px;
}

.domain-price {
    font-weight: 600;
    color: #0073aa;
    font-size: 1.1em;
}

.check-loading {
    margin-top: 25px;
    color: #6c757d;
    font-style: italic;
}

/* WHMCS Order Form */
.whmcs-order-form {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 25px;
}

.order-button {
    padding: 15px 35px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* WHMCS Product Groups */
.whmcs-product-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.group-card {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 25px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0073aa;
}

.group-name {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
}

.group-description {
    margin-bottom: 20px;
    color: #6c757d;
    line-height: 1.6;
}

.view-group-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-group-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* WHMCS Product Comparison */
.whmcs-product-comparison {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    padding: 20px 15px;
    border: 1px solid #e1e5e9;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-table th:first-child {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #ffffff;
}

.comparison-table td {
    padding: 15px;
    border: 1px solid #e1e5e9;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #e3f2fd;
}

/* WHMCS Error and Notice Messages */
.whmcs-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #721c24;
    margin: 20px 0;
}

.whmcs-notice {
    padding: 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 6px;
    color: #0c5460;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whmcs-products-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .domain-check-form {
        flex-direction: column;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.9em;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .whmcs-product-card,
    .whmcs-single-product,
    .whmcs-domain-checker,
    .whmcs-order-form {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 1.8em;
    }
    
    .whmcs-order-button,
    .check-button,
    .order-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}

/* WHMCS Admin Pages Styles */
.whmcs-packages-container,
.whmcs-orders-container,
.whmcs-reports-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.packages-filters,
.orders-filters {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.packages-filters input,
.packages-filters select,
.orders-filters input,
.orders-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.packages-filters input:focus,
.packages-filters select:focus,
.orders-filters input:focus,
.orders-filters select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.status-active {
    color: #28a745;
    font-weight: 600;
}

.status-inactive {
    color: #dc3545;
    font-weight: 600;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.report-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.report-card h3 {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 1.1em;
}

.chart-container {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

.chart-container h3 {
    margin: 0 0 15px 0;
    color: #333;
}

/* Loading States */
#packages-loading,
#orders-loading,
#reports-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.spinner.is-active {
    float: none;
    margin: 0 auto 15px;
}

/* Error States */
#packages-error,
#orders-error,
#reports-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    margin: 20px 0;
}

/* Success Messages */
.whmcs-success-message {
    position: fixed;
    top: 50px;
    right: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whmcs-error-message {
    position: fixed;
    top: 50px;
    right: 20px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Admin Pages */
@media (max-width: 768px) {
    .packages-filters,
    .orders-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .packages-filters input,
    .packages-filters select,
    .orders-filters input,
    .orders-filters select {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        margin-bottom: 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whmcs-product-card,
    .whmcs-single-product,
    .whmcs-domain-checker,
    .whmcs-order-form,
    .group-card,
    .pricing-card {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .product-name,
    .plan-name,
    .group-name {
        color: #f7fafc;
    }
    
    .product-description,
    .group-description {
        color: #a0aec0;
    }
    
    .product-pricing,
    .pricing-option {
        background: #4a5568;
        border-color: #718096;
    }
    
    .domain-input,
    .form-row input,
    .form-row select {
        background: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .domain-input:focus,
    .form-row input:focus,
    .form-row select:focus {
        border-color: #63b3ed;
    }
    
    .comparison-table {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .comparison-table th {
        background: #4a5568;
        color: #f7fafc;
    }
    
    .comparison-table td {
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .comparison-table tr:nth-child(even) {
        background: #4a5568;
    }
    
    .comparison-table tr:hover {
        background: #2c5282;
    }
    
    /* Dark mode for admin pages */
    .whmcs-packages-container,
    .whmcs-orders-container,
    .whmcs-reports-container,
    .report-card,
    .chart-container {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .report-card h3,
    .chart-container h3 {
        color: #a0aec0;
    }
    
    .packages-filters input,
    .packages-filters select,
    .orders-filters input,
    .orders-filters select {
        background: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .packages-filters input:focus,
    .packages-filters select:focus,
    .orders-filters input:focus,
    .orders-filters select:focus {
        border-color: #63b3ed;
    }
} 