.wgc-calculator-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wgc-calculator-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.wgc-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.wgc-quick-tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a90e2;
}

.wgc-quick-tips h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

.wgc-quick-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.wgc-quick-tips li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.wgc-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.wgc-input-group {
    position: relative;
}

.wgc-help-text {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: help;
    color: #6c757d;
}

.wgc-drink-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wgc-drink-option:hover {
    background: #f8f9fa;
}

.wgc-drink-details {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    color: #495057;
}

.wgc-timeline-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wgc-timeline-inputs input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
}

.wgc-calculate-btn {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.2);
}

.wgc-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
}

.wgc-results {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wgc-results h3 {
    color: #2c3e50;
    margin-top: 0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.wgc-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.wgc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.wgc-result-item:hover {
    transform: translateY(-2px);
}

.wgc-rental-tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.wgc-rental-tips h4 {
    color: #2c3e50;
    margin-top: 0;
}

.wgc-rental-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.wgc-cost-estimate {
    text-align: center;
    padding: 1.5rem;
    background: #e9ecef;
    border-radius: 8px;
    margin-top: 2rem;
}

.wgc-cost-estimate h4 {
    margin-top: 0;
    color: #2c3e50;
}

.wgc-cost-estimate p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a90e2;
    margin: 1rem 0;
}

.wgc-helpful-facts {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.wgc-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.wgc-fact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.wgc-fact:hover {
    transform: translateY(-3px);
}

.wgc-fact h4 {
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.wgc-fact p {
    color: #495057;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wgc-calculator-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .wgc-timeline-inputs {
        grid-template-columns: 1fr;
    }
    
    .wgc-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .wgc-help-text {
        right: 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .wgc-calculator-container {
        box-shadow: none;
    }
    
    .wgc-calculate-btn {
        display: none;
    }
    
    .wgc-results {
        break-inside: avoid;
    }
}