body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f7f7;
}
 /* Smooth transition for mobile menu */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
#mobile-menu.open {
    max-height: 400px; /* Adjust based on content */
}
/* Custom gradient for CTA button */
.btn-primary {
    background-image: linear-gradient(to right, #10b981, #059669);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.5), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}
.input-style {
    @apply w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-green-500 focus:border-green-500;
}
/* Style for the carousel transitions */
.carousel-item {
    transition: opacity 0.7s ease-in-out;
}
.container-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/* Style for the active unit button and active plan button */
.unit-active {
    background-color: #3b82f6; /* Blue-500 */
    color: white;
    box-shadow: 0 2px 5px rgba(59, 130, 246, 0.5);
}
.unit-inactive {
    background-color: #f3f4f6; /* Gray-100 */
    color: #4b5563; /* Gray-700 */
    transition: background-color 0.15s;
}

/* Specific styling for Day Navigation Tabs */
.day-tab {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex-grow: 1; /* Allows wrapping on smaller screens */
    text-align: center;
}
.day-tab.active {
    background-color: #10b981; /* Emerald-500 for active tab */
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}
.day-tab:not(.active):hover {
    background-color: #d1fae5; /* Emerald-100 on hover */
}
