﻿.dp-popup-aapi {
    width: 350px;
    background: white;
    box-sizing: border-box;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    padding: 14px;
}

.dp-header-aapi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.dp-nav-btn-aapi {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.dp-grid-aapi {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.dp-day-header-aapi {
    text-align: center;
    font-size: 12px;
    color: #8a8f98;
    padding-bottom: 4px;
}

.dp-day-aapi {
    height: 38px;
    width: 38px;
    border-radius: 999px;
    border: 1px solid #e7eaf0;
    background: white;
    cursor: pointer;
    margin: 0 auto;
}

    .dp-day-aapi.selected {
        border: 2px solid #2f80ed;
        color: #2f80ed;
        font-weight: 700;
    }

    .dp-day-aapi.today {
        background: #eef6ff;
    }

    .dp-day-aapi.other-month {
        opacity: .45;
    }

    .dp-day-aapi:disabled {
        opacity: .35;
        cursor: not-allowed;
    }

.dp-today-aapi {
    margin-top: 12px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #2f80ed;
    background: #eef6ff;
    color: #2f80ed;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    line-height: 9px;
}

    .dp-today-aapi:hover {
        background: #2f80ed40;
    }

button.dp-day-aapi:hover {
    background: rgba(158, 158, 158, 0.32);
}

button.dp-day-aapi.today:hover {
    background: #2f80ed40;
}

button.dp-day-aapi.selected:hover {
    background: #2f80ed40;
}
