#nepali-datepicker {
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    margin: 20px auto;
}

#datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ccc;
}

#datepicker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

#weekday-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 3px;
}

.day-cell {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}

.day-cell:hover {
    background-color: #ddd;
}

.selected {
    background-color: #35b14f;
    color: #fff;
}

.weekday {
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

