body {
    background-color: #f3f3f3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
}
.pagina-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.login-box {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem auto;
    border-radius: 20px;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.card-titulo {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-dados {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #1a1a1a;
}
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    margin-bottom: 1.25rem;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.card-body { padding: 1.25rem 1.25rem; }
.bg-meta-ok { background: #e8f5e9; }
.bg-meta-falta { background: #fff8e1; }
.bg-meta-atingida { background: linear-gradient(135deg, #4CAF50, #81C784); color: #fff; }
.bg-meta-atingida .card-titulo, .bg-meta-atingida .card-dados { color: #fff; }
.topo-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.observacoes .list-group-item {
    border-left: 4px solid #007bff;
    background: #f8fbff;
}
.filtro-mes .custom-select { height: calc(2.25rem + 2px); }
.grafico-wrap {
    position: relative;
    height: 380px;
    width: 100%;
}
.badge-origem {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}
.badge-origem.local { background: #c8e6c9; color: #1b5e20; }
.badge-origem.aws { background: #bbdefb; color: #0d47a1; }
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s infinite;
    border-radius: 8px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
