/* css/week-picker.css */
#ui-datepicker-div {
    display: none;
}

.input-container {
    position: relative;
    display: inline-block;
    width: 36px; /* Adjusted width to fit the icon */
    height: 36px; /* Adjusted height to fit the icon */
    margin-right: 20px;

}

#week-picker {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    opacity: 0; /* Hide the input but keep it accessible */
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5); /* Scale icon to 150% */
    pointer-events: none; /* Make icon not block clicks */
    width: 24px;
    height: 24px;
    color: #555;
}

/* Additional styles to set the background color of the calendar and remove border radius */
.ui-datepicker {
    background: #13181a; /* Dark background color */
    color: #999; /* Light text color */
    font-size: 12px; /* Font size */
    border-radius: 0; /* Remove border radius */
    padding: 10px;
}

.ui-datepicker-header {
    background: #13181a; /* Match header background with calendar */
    border-radius: 0; /* Remove border radius */
    border: none; /* Remove border */
}

.ui-datepicker-header .ui-datepicker-prev {
    width: 50%;
    display: inline-block;
}

.ui-datepicker-header .ui-datepicker-next {
    width: 50%;
    display: inline-block;
    text-align: right;
}

.ui-datepicker-title {
    width: 100%;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    color: #fff; /* Light title text color */
    font-size: 16px;
}

.ui-datepicker-calendar th {
    color: #ccc; /* Light color for day names */
}

.ui-datepicker-calendar td a {
    background: none; /* No background */
    color: #fff; /* Bright color for dates */
    border: none; /* No border */
    font-size: 12px; /* Font size */
    padding: 5px; /* Padding */
}

.ui-datepicker-calendar td a:hover {
    background: #555; /* Darker hover background */
    color: #fff; /* White text color on hover */
}

.ui-datepicker-calendar .ui-datepicker-today a {
    background: #555; /* Darker background for today */
    color: #fff; /* White text color for today */
}

.ui-state-default, .ui-widget-content .ui-state-default {
    border: none; /* No border */
    background: #13181a !important; /* Dark background */
    font-weight: normal;
    color: #fff;
    font-size: 12px;
    padding: 5px;
}

.ui-state-active, .ui-widget-content .ui-state-active {
    border: none; /* No border */
    background: #13181a !important; /* Dark background for selected state */
    font-weight: normal; /* Normal font weight */
    color: #f8d747; /* Bright yellow color for selected state */
}
