body {
    font-family: 'Inter', sans-serif;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}
.day {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 80px;
    padding: 8px;
    text-align: left;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    position: relative;
}
.day:hover:not(.empty) {
    background-color: #f3f4f6;
    cursor: pointer;
}
.day-number {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.task-indicator {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background-color: #3b82f6;
    margin-top: 4px;
}
.task-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    color: #ffffff;
    background-color: #3b82f6;
}
.modal {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.hidden {
    display: none;
}
/* Style for the searchable dropdown */
.searchable-dropdown {
    position: relative;
}
.searchable-dropdown-input {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}
.searchable-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 6px 6-x;
    z-index: 10;
}
.searchable-dropdown-item {
    padding: 8px;
    cursor: pointer;
}
.searchable-dropdown-item:hover {
    background-color: #f3f4f6;
}
/* New styles for larger month and year dropdowns */
#month-select, #year-select, #spreadsheet-month-select, #spreadsheet-year-select {
    /* font-size: 1.1rem; /* Increase font size */ */
    /* padding: 8px 12px; /* Increase padding */ */
    font-weight: 600;
}
/* Spreadsheet specific styles */
.spreadsheet-container {
    overflow-x: auto;
    white-space: nowrap;
}
.spreadsheet-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1000px;
}
.spreadsheet-table th, .spreadsheet-table td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    font-size: 0.875rem;
    vertical-align: top;
}
.spreadsheet-table th {
    background-color: #f3f4f6;
    text-align: left;
    font-weight: 600;
}
.spreadsheet-table td {
    background-color: #ffffff;
}
.spreadsheet-table td.day-cell {
    text-align: center;
    cursor: pointer;
}
.border-separator {
    border-right: 2px solid #9ca3af;
}

.sr-only{
	display: none;
}
