@charset "UTF-8";
@media screen { 
/* Declare the encoding (if needed) */

/* Optional: Import other stylesheets  
@import url("http://repixel.de/blog/wp-content/themes/micromoon/assets/css/reset.css"); 
*/
.wp-simple-calendar {
    max-width: 350px;
    margin: 2rem auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.calendar-header {
    text-align: center;
    padding: 0.75rem 0;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 6px 6px 0 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 10px;
}

.calendar-day-name {
    font-weight: 700;
    text-align: center;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
    user-select: none;
}

.calendar-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 4px;
    cursor: default;
    background: #f9f9f9;
    box-shadow: inset 0 0 3px #ccc;
    user-select: none;
}

.calendar-day.today {
     font-weight: 700;
    box-shadow: none;
}

.calendar-day.empty {
    background: transparent;
    box-shadow: none;
    cursor: default;
}
}