body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #555;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.status-ok {
    background-color: #28a745; /* Green */
}

.status-error {
    background-color: #dc3545; /* Red */
}

.taxa-info {
    margin-top: 30px;
    padding: 15px;
    background-color: #e9f7fd;
    border-left: 5px solid #007bff;
    border-radius: 4px;
}

.taxa-info h4 {
    margin-top: 0;
}

.taxa-info ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.footer-links {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 20px;
}

.flashes {
    list-style: none;
    padding: 0;
}

.flashes li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.flashes .success { background-color: #d4edda; color: #155724; }
.flashes .danger { background-color: #f8d7da; color: #721c24; }
.flashes .info { background-color: #d1ecf1; color: #0c5460; }
.flashes .warning { background-color: #fff3cd; color: #856404; }