.datepicker-container {
    position: relative;
    width: 250px;
}

.date-input {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.date-options {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.date-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.date-options li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.date-options li:hover {
    background: #f0f0f0;
}
