.process-step {
    border: 5px #ebebeb solid;
    border-radius: 100%;
    line-height: 0;
    background: #959595;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-self: center;
    display: flex;
    color: #fff;
    width: 45px;
    height: 45px;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 7px;
    margin-right: 5px;
    z-index: 4;
    cursor: pointer;
}

.process-step:hover{
    border: 5px #d8d8d8 solid;
}

.process-step-active {
    background-color: #f89828;
}

.lm-attendance-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lm-attendance-legend__item {
    align-items: center;
    color: #6b7280;
    display: inline-flex;
    font-size: 0.875rem;
    gap: 0.4rem;
}

.lm-attendance-dot {
    border-radius: 999px;
    display: inline-block;
    height: 0.8rem;
    width: 0.8rem;
}

.lm-attendance-dot--present {
    background: #dcfce7;
    border: 1px solid #22c55e;
}

.lm-attendance-dot--missed {
    background: #fee2e2;
    border: 1px solid #ef4444;
}

.lm-attendance-dot--future {
    background: #e5e7eb;
    border: 1px solid #9ca3af;
}

.lm-attendance-weekdays,
.lm-attendance-calendar {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.lm-attendance-weekdays {
    margin-bottom: 0.75rem;
}

.lm-attendance-weekdays__item {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
}

.lm-attendance-day {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    min-height: 6.5rem;
    padding: 0.85rem;
}

.lm-attendance-day--today {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.18);
}

.lm-attendance-day--present {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border-color: #86efac;
}

.lm-attendance-day--missed {
    background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
    border-color: #fecaca;
}

.lm-attendance-day--future {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-color: #e5e7eb;
}

.lm-attendance-day--empty {
    background: transparent;
    border: none;
    min-height: 0;
    padding: 0;
}

.lm-attendance-course-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1rem;
}

.lm-attendance-course-card + .lm-attendance-course-card {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .lm-attendance-weekdays,
    .lm-attendance-calendar {
        gap: 0.5rem;
    }

    .lm-attendance-day {
        border-radius: 0.75rem;
        min-height: 5.5rem;
        padding: 0.65rem;
    }
}

@media (max-width: 575.98px) {
    .lm-attendance-weekdays__item {
        font-size: 0.75rem;
    }

    .lm-attendance-day {
        min-height: 5rem;
        padding: 0.5rem;
    }
}
