/* Exemplo de CSS para diminuir fonte na tabela .table-sm */
.table-sm td, .table-sm th {
	font-size: 0.8rem;
}

.breadcrumb-item a {
	font-size: 0.75rem;
}

.user-name {
	font-size: 0.7rem;
}

.card form * {
	font-size: 0.8rem;
}

/* Banner styles */
.banner-container {
    display: flex;
    align-items: center;
    background: #00205c;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 16px;
    color: #fff;
    max-width: 1200px;
    margin: 16px auto;
    gap: 20px;
}

.banner-logo {
    width: 200px;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    color: #c89211;
}

.banner-text {
    font-size: 1.15rem;
    margin: 18px 0;
}

.banner-footer {
    font-size: 1.05rem;
    font-weight: 600;
}

.highlight {
    color: #c89211;
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .banner-logo {
        margin-bottom: 12px;
        width: 150px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-text {
        font-size: 0.95rem;
        margin: 12px 0;
    }

    .banner-footer {
        font-size: 0.9rem;
    }
}
