* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-bar {
  background: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  display: flex;
  justify-content: space-around; /* espace égal entre les items */
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
}

.status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Poppins;
  font-size: 12px;
  color: rgb(103, 106, 108);
  font-weight: 400;
  line-height: 1.5;
  height: 40px
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:0 2px 15px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
}

.card-header {
  background: #f5f5f5;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  font-family: 'Poppins';
  color: rgb(103, 106, 108);
  display: flex;
  justify-content: space-between; /* Sépare le label à gauche et le statut à droite */
  align-items: center;
}

.card-container {
  margin-top: 0;
  margin-bottom: 0px;
  border-radius: 5px;
  color: #676a6c;
  width: 100%;
}

.card-body {
  padding: 16px;
}

.uptime-value {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.performance-issues {
  font-size: 14px;
  color: #333;
}

.performance-issues .icon {
  color: #ff9800;
  margin-right: 4px;
}

.uptime-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.uptime-table th,
.uptime-table td {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid #ddd;
}

.uptime-table th {
  background: #f5f5f5;
  font-weight: bold;
}

.check-name {
  flex: 1;
}

i.fa-circle-check {
    color:#7fdf83;
    font-size: 17px;
}
i.fa-circle-exclamation {
    color:#ff9f00;
    font-size: 17px;
}
i.fa-circle-xmark {
    color:#e51c23;
    font-size: 17px;
}
i.fa-circle-pause {
    color: #8559fa;
    font-size: 17px;
}
i.fa-circle-minus {
    color:#666666;
    font-size: 17px;
}

.uptime-table td:last-child,
.uptime-table th:last-child {
  width: 40px;           /* Largeur fixe de la colonne des icônes */
  text-align: center;    /* Centre les icônes */
}

.uptime-table td:first-child,
.uptime-table th:first-child {
  padding-right: 10px;   /* Petit espace pour mieux séparer texte et icône */
}
