body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 10px;
    font-size: 16px;
}

input,
button,
textarea {
    width: 100%;
    padding: 12px;
    margin: 6px 0;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    box-sizing: border-box;
}

button {
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #1d4ed8;
}

button.btn-vermelho {
    background-color: #dc2626;
}

button.btn-vermelho:hover {
    background-color: #b91c1c;
}

.status-top {
    padding: 12px;
    background-color: #222;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.verde {
    color: #4ade80;
    font-weight: bold;
}

.laranja {
    color: #facc15;
    font-weight: bold;
}

.cinza {
    color: #9ca3af;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1f2937;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    font-size: 14px;
}

table th,
table td {
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #374151;
    color: #f9fafb;
}

table td {
    border-top: 1px solid #374151;
}

form {
    margin-bottom: 15px;
}

textarea {
    resize: none;
}

.resumo {
    margin-top: 15px;
    padding: 12px;
    background-color: #1e293b;
    border-left: 5px solid #2563eb;
    border-radius: 8px;
}

.meta-ok {
    border-left-color: #22c55e;
}

.meta-fail {
    border-left-color: #f87171;
}

/* Responsivo */
@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .status-top {
        font-size: 16px;
    }

    table th,
    table td {
        font-size: 13px;
    }

    button,
    input,
    textarea {
        font-size: 15px;
    }
}