/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Container centralizado */
.container {
    max-width: 480px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Títulos */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.6rem;
}

/* Formulários */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"],
input[type="file"],
select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

button {
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #218838;
}

/* Links */
a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Tabela Admin */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 0.9rem;
}

th {
    background-color: #f2f2f2;
}

select {
    padding: 6px;
}

/* Timeline status */
.timeline {
    margin-top: 20px;
    border-left: 4px solid #28a745;
    padding-left: 15px;
}

.timeline-item {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
}

/* Responsividade */
@media (max-width: 500px) {
    .container {
        margin: 15px;
        padding: 15px;
    }

    h1 {
        font-size: 1.4rem;
    }
