/* ===== RESET GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASE ===== */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

/* ===== BOTÕES ===== */
.btn {
    padding: 8px 14px;
    font-size: 14px;
}

.btn-primary {
    background: #4CAF50;
    color: #fff;
}

.btn-edit {
    background: #2196F3;
    color: #fff;
}

.btn-delete {
    background: #f44336;
    color: #fff;
}

/* ===== TABELAS ===== */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

thead {
    background: #4CAF50;
    color: white;
}

tbody tr:nth-child(even) {
    background: #f2f2f2;
}

tbody tr:hover {
    background: #e0f7fa;
}
