body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

/* Barra superior (navbar) */
.navbar {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

    .navbar .navbar-brand {
        font-weight: bold;
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

/* Título e subtítulo */
.text-center h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1677ff;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.text-center p {
    color: #888;
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
}

/* Menu de botões */
.menu-dashboard {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.menu-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem 1.5rem 1.1rem 1.5rem;
    min-width: 160px;
    min-height: 150px;
    color: #1677ff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(13,110,253,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    border: 2.5px solid #e3eafc;
    transition: transform 0.13s cubic-bezier(.4,2,.6,1), box-shadow 0.13s, border-color 0.13s, background 0.13s;
    position: relative;
    overflow: hidden;
}

    .menu-tile i {
        font-size: 2.5rem;
        margin-bottom: 0.7rem;
        color: #1677ff;
        text-shadow: 0 2px 8px rgba(13,110,253,0.10);
        z-index: 1;
    }

    .menu-tile span {
        margin-top: 0.5rem;
        font-size: 1.08rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        z-index: 1;
    }

    .menu-tile:hover, .menu-tile:focus {
        background: #e3eafc;
        border-color: #1677ff;
        box-shadow: 0 8px 32px rgba(13,110,253,0.18), 0 2px 8px rgba(0,0,0,0.07);
        transform: translateY(-5px) scale(1.045);
        text-decoration: none;
    }

/* Breadcrumb moderno e bonito */
.custom-breadcrumb {
    width: 100%;
    margin: 1.2rem 0 2.2rem 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
}

    .custom-breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 0.5rem;
    }

    .custom-breadcrumb li {
        display: flex;
        align-items: center;
        color: #1677ff;
    }

        .custom-breadcrumb li a {
            color: #1677ff;
            text-decoration: none;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.15s, color 0.15s;
        }

            .custom-breadcrumb li a:hover {
                background: #e3eafc;
                color: #0a58ca;
                text-decoration: underline;
            }

        .custom-breadcrumb li.sep {
            color: #bbb;
            font-size: 1.1em;
            margin: 0 0.1rem;
            user-select: none;
        }

        .custom-breadcrumb li.active {
            color: #888;
            font-weight: 600;
            padding: 0.2rem 0.5rem;
        }

.breadcrumb-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 0.7rem 1.2rem;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    border: 1.5px solid #e3eafc;
    display: flex;
    align-items: center;
}

/* Barra fixa de checagem no rodapé */
.barra-fixa-checagem {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(90deg, #1677ff 0%, #2ca08f 100%);
    color: #fff;
    box-shadow: 0 -2px 16px rgba(22,119,255,0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2.2rem 0.9rem 2.2rem;
    z-index: 9999;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

    .barra-fixa-checagem .checagem-info {
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .barra-fixa-checagem .btn-salvar {
        background: #fff;
        color: #1677ff;
        border: none;
        border-radius: 8px;
        padding: 0.6rem 2.2rem;
        font-size: 1.1rem;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(44,160,143,0.10);
        transition: background 0.15s, color 0.15s, box-shadow 0.15s;
        cursor: pointer;
        outline: none;
    }

        .barra-fixa-checagem .btn-salvar:disabled {
            background: #e3eafc;
            color: #aaa;
            cursor: not-allowed;
            box-shadow: none;
        }

        .barra-fixa-checagem .btn-salvar:not(:disabled):hover {
            background: #1677ff;
            color: #fff;
        }

/* Responsividade da barra fixa */
@media (max-width: 600px) {
    .barra-fixa-checagem {
        padding: 0.7rem 1rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.7rem;
    }

        .barra-fixa-checagem .btn-salvar {
            width: 100%;
            padding: 0.6rem 0;
            font-size: 1rem;
        }

        .barra-fixa-checagem .checagem-info {
            width: 100%;
            justify-content: center;
            font-size: 1rem;
        }
}