body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f0ec;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background-color: #3a231c;
    padding: 20px 0;
}

.logo {
    display: block;
    margin: 0 auto 30px;
    max-width: 140px;
}

.sidebar nav a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #5b3f34;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
}

.sidebar nav a:hover {
    background-color: #8b5e4a;
}

.main-content {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    text-align: center;
}

.main-content h1 {
    color: #3a231c;
    text-align: center;
}

.widgets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.widget {
    flex: 1 1 400px;
    background: white;
    border: 1px solid #d0a062;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    min-height: 120px;
}

/* NOVO: Estilização da agenda */
.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95em;
    text-align: left;
}

.agenda-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.agenda-list li.urgente {
    color: #a94442;
    font-weight: bold;
    background-color: #fff0f0;
    border-left: 4px solid #d9534f;
    padding-left: 10px;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    color: #777;
}
