.left { display: flex; justify-content: flex-start; }
.right { display: flex; justify-content: flex-end; }
.msg { 
    background: #b6adad; 
    padding: 8px; 
    margin: 5px; 
    border-radius: 8px; 
    max-width: 60%;
    width: fit-content;
    display: inline-block;
}
.right .msg { background: #007bff; color: white; }

body {
  font-family: sans-serif;
  background: #f2f2f2;
  padding: 2rem;
}

h1 {
  text-align: center;
}

#entries-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.entry {
  background: white;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.active { background: #d4edda; }
.inactive { background: #f8f9fa; }
.failed { background: #f8d7da; }
