body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.topo h1 {
    margin: 0;
    color: #222;
}

.btn-voltar {
    text-decoration: none;
    background: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.btn-voltar:hover {
    background: #555;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.linha {
    margin-bottom: 18px;
}

.linha span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.linha strong {
    font-size: 16px;
    color: #222;
}

.status {
    padding: 4px 10px;
    background: #e8f0ff;
    border-radius: 20px;
    font-size: 14px;
}

.descricao p {
    margin: 0;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}
.btn-novo {
    text-decoration: none;
    background: #28a745;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.btn-novo:hover {
    background: #218838;
}

.tabela {
    width: 100%;
    border-collapse: collapse;
}

.tabela th {
    background: #f1f1f1;
    text-align: left;
    padding: 12px;
    font-size: 14px;
}

.tabela td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.tabela tr:hover {
    background: #fafafa;
}

.acoes a {
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 5px;
}

.btn-ver {
    background: #007bff;
    color: white;
}

.btn-ver:hover {
    background: #0069d9;
}

.btn-editar {
    background: #ffc107;
    color: #000;
}

.btn-editar:hover {
    background: #e0a800;
}

.btn-excluir {
    background: #dc3545;
    color: white;
}

.btn-excluir:hover {
    background: #c82333;
}