/* Custom Gradient Backgrounds */
.header-gradient {
    background: linear-gradient(135deg, #006633 0%, #00994D 100%);
}

.button-gradient {
    background: linear-gradient(135deg, #00994D 0%, #007A3D 100%);
}

.button-gradient:hover {
    background: linear-gradient(135deg, #007A3D 0%, #006633 100%);
}

.copy-gradient {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.copy-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
}

.result-gradient {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}

.total-gradient {
    background: linear-gradient(135deg, #006633 0%, #00994D 100%);
}

/* Custom Range Slider Styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    accent-color: #00994D;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #00994D;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.range-slider::-webkit-slider-thumb:hover {
    background: #006633;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #00994D;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.range-slider::-moz-range-thumb:hover {
    background: #006633;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Body padding for mobile */
@media (max-width: 768px) {
    body {
        padding: 0;
    }
}
