
#wlCalInput{
    width:200px;
    padding:8px;
    cursor:pointer;
}

#wlCalSelected{
    padding:8px;
}

.wlCalPopup{
    width:300px;
    border:1px solid #ccc;
    border-radius:6px;
    background:#fff;
    padding:10px;
    margin-top:5px;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.wlCalHeader{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.wlCalHeader button{
    width:35px;
    height:35px;
    border:none;
    background:#eee;
    cursor:pointer;
    border-radius:4px;
}

.wlCalHeader button:hover{
    background:#ddd;
}

.wlCalWeekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    text-align:center;
    font-weight:bold;
    margin-bottom:5px;
}

.wlCalDays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:4px;
}

.wlCalDay,
.wlCalEmpty{
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
}


.wlCalDay{
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    border-radius:4px;
    transition:0.2s;
}

.wlCalDay:hover{
    background:#0d6efd;
    color:#fff;
}

/* Dags dato */
.wlCalToday{
    font-weight:bold;
}

/* Valgt dato */
.wlCalSelected{
    background:#ffc107;
    color:#000;
    font-weight:bold;
}

.wlCalHasData{
    background:#0772ff;
}