
/* Grow Garden Calculator Styles */
.ggc-calculator-container {
    max-width: 1200px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ggc-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 30px;
    text-align: center;
}

.ggc-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ggc-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ggc-calculator-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.ggc-input-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.ggc-input-group {
    margin-bottom: 20px;
}

.ggc-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
    font-size: 1.1rem;
}

.ggc-input-section select,
.ggc-input-section input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.ggc-input-section select:focus,
.ggc-input-section input[type="number"]:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.ggc-mutations-section {
    background: #fff3cd;
    border: 2px solid #ffeeba;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ggc-mutations-section h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ggc-mutations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.ggc-mutation-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ffeeba;
}

.ggc-mutation-item input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.ggc-mutation-item label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.ggc-multiplier {
    color: #4CAF50;
    font-weight: bold;
    font-size: 0.9rem;
}

.ggc-boosts-section {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    padding: 20px;
    border-radius: 10px;
}

.ggc-boosts-section h3 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ggc-boost-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
}

.ggc-boost-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.ggc-boost-item label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.ggc-results-section {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.ggc-results-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ggc-value-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.ggc-final-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.ggc-currency {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ggc-calculation-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.ggc-calculation-details h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ggc-calculation-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.ggc-calculate-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    width: 100%;
}

.ggc-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .ggc-calculator-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .ggc-header h1 {
        font-size: 2rem;
    }
    
    .ggc-final-value {
        font-size: 2rem;
    }
    
    .ggc-mutations-grid {
        grid-template-columns: 1fr;
    }
}
