
/* = = = = = = = = = = = = = = = = = datei termine.css = = = = = = = = = = = = = = = = = = = = = = = = = */


.termine-note {
    text-align: center;
    color: #8a8a8a;
    font-size: 1.4rem;
    margin-top: -3rem;
    margin-bottom: 3rem;
}

.termine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.month-accordion {
    background: #232323;
    border: .1rem solid #333;
    border-radius: .6rem;
    overflow: hidden;
}

.month-accordion summary {
    cursor: pointer;
    padding: 1.3rem 1.6rem;
    color: #B5BBBB;
    font-size: 1.8rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.month-accordion summary::-webkit-details-marker {
    display: none;
}

.month-accordion summary::after {
    font-family: 'FontAwesome';
    content: "\f107";
    color: #8a8a8a;
    font-size: 1.5rem;
    transition: transform .2s ease;
}

.month-accordion[open] summary::after {
    transform: rotate(180deg);
}

.month-accordion summary .termine-count {
    font-size: 1.1rem;
    background: #800000;
    color: #fff;
    padding: .15rem .7rem;
    border-radius: 1rem;
    margin-left: .8rem;
}

.month-accordion .termine-body {
    padding: .5rem 1.6rem 1.4rem 1.6rem;
    border-top: .1rem solid #333;
}

.termine-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: .5rem;
}

.termine-table td {
    padding: .7rem .4rem;
    color: #D9D5D5;
    font-size: 1.4rem;
    border-bottom: .1rem solid #2a2a2a;
    vertical-align: top;
}

.termine-table tr:last-child td {
    border-bottom: none;
}

.termine-table td:first-child {
    color: #c94f4f;
    font-weight: bold;
    white-space: nowrap;
    width: 8rem;
}

.termine-empty {
    color: #6b6b6b;
    font-style: italic;
    font-size: 1.4rem;
    padding: 1rem 0;
}

/* +  +  +  +  + +  +  +  +  +  C O D E ENDE  +  +  +  +  +  +  +  +  +  + */
