﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* =========================
   TABELAS RESPONSIVAS
========================= */
@media (max-width: 768px) {
    table thead {
        display: none;
    }

    table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 0.5rem;
    }

    table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem;
        border: none !important;
    }

        table tbody td::before {
            content: attr(data-label);
            font-weight: bold;
            color: #6c757d;
        }
}

/* =========================
   STATUS BADGE
========================= */
.status-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    display: inline-block;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .status-badge {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        margin-top: 0.4rem;
    }
}

/* =========================
   CORES SUAVES
========================= */
.bg-success-soft {
    background-color: rgba(25, 135, 84, .12) !important;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, .12) !important;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, .15) !important;
}

/* =========================
   REGIMENTO
========================= */
.regimento-conteudo {
    font-family: 'Segoe UI', Tahoma, sans-serif !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: #1e293b !important;
    text-align: justify !important;
}

    .regimento-conteudo h1,
    .regimento-conteudo h2,
    .regimento-conteudo h3 {
        text-align: center !important;
        color: #166534 !important;
        font-weight: 700 !important;
        margin: 24px 0 16px !important;
    }

    .regimento-conteudo p {
        margin-bottom: 14px !important;
    }

    .regimento-conteudo ol,
    .regimento-conteudo ul {
        margin: 12px 0 16px 22px !important;
        padding-left: 18px !important;
    }

    .regimento-conteudo li {
        margin-bottom: 8px !important;
    }

    .regimento-conteudo * {
        font-family: inherit !important;
        font-size: inherit !important;
        color: inherit !important;
        line-height: inherit !important;
        text-align: inherit !important;
    }
