/* 
 * upcomingcalendar.css
 * Core standalone CSS for the Upcoming Calendar Widget
 */

.bg-stripes {
    background-size: 8px 8px;
}

#calendar-tooltip {
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.erickson-calendar-container {
    position: relative;
    width: 100%;
}

/* Custom Scrollbar for Batch List */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Toggle Slider UI */
.erickson-toggle-container {
    background-color: #f3f4f6;
    padding: 4px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.erickson-toggle-btn {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.erickson-toggle-btn:hover {
    color: #1f2937;
}

.erickson-toggle-btn.active {
    background-color: #ffffff;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
}
