/* CSS Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6fa;
    color: #333;
    margin: 0;
    padding: 0;
}
/* Navbar styling */
.navbar {
    background-color: #580662; /* Cor roxa */
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.navbar .logo img {
    height: 60px; /* Ajuste a altura da logo conforme necessário */
    margin-left: 10px;
}
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    margin-top: 20px; /* Ajuste para começar abaixo da navbar */
}
h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}
.service-group {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.subservice-item {
    margin-top: 15px; /* Espaço entre os subserviços */
    padding-bottom: 15px; /* Espaço para a borda */
    border-bottom: 1px solid #e0e0e0; /* Linha divisória */
}

.status-item, .subservice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.status-indicator.online {
    background-color: #4caf50;
}
.status-indicator.offline {
    background-color: #f44336;
}
.expandable {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.expandable .icon {
    margin-right: 8px;
}
.subservices {
    display: none;
    padding-left: 20px;
}
.incident-date {
    font-weight: bold;
    margin-top: 20px;
}
.incident {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.incident p {
    margin: 0;
}