* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modulo {
    font-family: Arial, Helvetica, sans-serif;
    padding: 2rem;
}

.modulo__list {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.modulo__item {
    border-bottom: 0 !important;
    border-radius: 5px 5px 0 0;
    list-style: none;

    padding: 0.6rem 1rem;
}

.modulo__item--active {
    background-color: white;
    border: 1px solid #ccc;

    margin-bottom: -1px;
}

.modulo__link {
    background: none;
    border: none;
    color: #60a5fa;
    font-size: 1rem;
    text-decoration: none;
}

.modulo__item--active .modulo__link {
    color: #495057;
}

.modulo__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem;
    margin-top: 1rem;

    background-color: #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
}

.modulo__breadcrumb a,
.modulo__breadcrumb span {
    color: #6c757d;
    text-decoration: none;
}

.modulo__indicators {
    margin-top: 1rem;
}

.modulo__indicators h2 {
    color: #6c757d;
    font-size: 1rem;
}

.modulo__indicators div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.modulo__indicator {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
    flex: 1;

    background-color: #e9ecef;
    border-radius: 5px;
    color: #60a5fa;
    text-decoration: none;
}

.modulo__indicator span:first-child {
    color: #495057;
    font-size: 0.8rem;
    font-weight: 600;
}

.modulo__indicator span:last-child {
    color: #60a5fa;
    font-size: 0.8rem;
    font-weight: 800;
}

.modulo__table {
    margin-top: 1rem;
}
