﻿.mud-card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .mud-card-hover:hover {
      transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;

    }

.mud-appbar {
    background-image: url('/_images/diagonal-thin-light.png');
    background-repeat: repeat; /* tile the image */
    background-size: auto; /* keep original size */
    background-position: top left; /* start tiling from corner */
    color: white;
}


.mud-drawer {
    background-image: url('/_images/diagonal-thin-light.png');
    background-repeat: repeat; /* tile the image */
    background-size: auto; /* keep original size */
    background-position: top left; /* start tiling from corner */
    color: white;
}



/*.day-cell {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.filled-day {
    border: 1px solid var(--mud-palette-primary);
    background-color: rgba(25, 118, 210, 0.15);
    border-radius: 4px;
}*/

.month-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 4px;
}

.month-label {
    width: 50px; /* fixed width for alignment */
    font-weight: 700;
    text-align: right;
    margin-right: 6px;
    color: #444;
}

.days-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
}

.day {
    width: 18px; /* fits 31 days in ~600px */
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 0.75rem;
    border: 1px solid #ccc;
    border-right: none;
}

    .day:last-child {
        border-right: 1px solid #ccc;
    }

.filled {
    background-color: rgba(25, 118, 210, 0.25);
    border-color: var(--mud-palette-primary);
    font-weight: 600;
}

.weekend {
    background-color: rgba(255, 105, 180, 0.25); /* soft pink */
    border-color: rgba(255, 105, 180, 0.6);
}