.date-input-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.date-input-container input[type="text"] {
    width: 100%;
    padding: 15px;
    padding-right: 40px;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: #4E3A02;
    font-size: 16px;
    font-weight: lighter;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
}

.calendar-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #756656;
    cursor: pointer;
}

.custom-calendar {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.current-month {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.prev-month, .next-month {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.prev-month:hover, .next-month:hover {
    background: rgba(0, 0, 0, 0.05);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 5px;
    font-weight: 500;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    color: #333;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background: rgba(0, 0, 0, 0.05);
}

.calendar-day.selected {
    background: #91a9d4;
    color: #fff1d8;
}

.calendar-day.today {
    border: 1px solid #3d517b;
    color: rgb(161, 220, 229);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.show-calendar {
    display: block;
}