.gradient-bg {
    background: linear-gradient(135deg, #0a4226 0%, #073a28 100%);
}

.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.result-card {
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.calculator-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-focus:focus {
    border-color: #43a047;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.25);
}

.date-input {
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.date-input:focus {
    background-color: #ffffff;
}

.text-shadow-strong {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.title-container h1 {
    color: #064e3b; /* Dark Green */
}

.title-container p {
    color: #05634a; /* Slightly Lighter Dark Green */
}

.title-container {
    background-color: transparent;
    padding: 1rem;
    border-radius: 0.5rem;
}

.align-top {
    align-items: flex-start;
}

/* Hide spin buttons for number inputs */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.time-input-field {
    box-sizing: border-box;
    border: 2px solid #e5e7eb; /* gray-200 */
    transition: all 0.3s ease-in-out;
}

.time-input-field:focus {
    border-color: #1f2937; /* gray-900 */
    outline: none;
}