/**
 * Rig Configurator Public Styles
 *
 * This file is intentionally minimal. All configurator-specific styles
 * have been moved to rig-configurator-form.css for better organization.
 *
 * This file now only contains:
 * - Dealer portal styles (login, registration, dashboard)
 * - Quote display styles
 * - General non-configurator form elements
 *
 * @package RigConfigurator
 * @since 1.0.0
 */

/* ==========================================================================
   Global Styles
   ========================================================================== */
.has-rig-configurator #main {
    padding-top: 0;
}

/* ==========================================================================
   Dealer Portal Styles
   ========================================================================== */

/* Dealer portal and dashboard styles removed - now in rig-configurator-form.css */

.rig-dealer-portal {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.rig-dealer-register {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rig-dealer-register h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.rig-dealer-dashboard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.rig-dealer-quotes {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Quote Display Styles
   ========================================================================== */

.rig-quote-display {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rig-quote-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.rig-quote-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.rig-quote-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.rig-quote-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.rig-customer-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.rig-quote-items {
    margin-bottom: 2rem;
}

.rig-quote-items table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.rig-quote-items th,
.rig-quote-items td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.rig-quote-items th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.rig-quote-total {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .rig-dealer-portal,
    .rig-quote-display {
        padding: 1rem;
        margin: 0 1rem;
    }

    .rig-dealer-dashboard {
        grid-template-columns: 1fr;
    }

    .rig-quote-details {
        grid-template-columns: 1fr;
    }

    .rig-quote-items table {
        font-size: 0.875rem;
    }

    .rig-quote-items th,
    .rig-quote-items td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .rig-quote-items table {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .rig-quote-display {
        box-shadow: none;
        padding: 0;
    }
}
