header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
    outline: 1px solid #ccc; /* Debugging outline */
}

div#app, div#app h1 {
    color: #333;
}

.text-success {
    color: #28a745;
    font-weight: bolder;
}
.text-danger {
    color: #dc3545;
    font-weight: bolder;
}
div#logo {
    /* display: flex;
    justify-content: left;
    margin: 0px; */
    background-color: #fff;
}
div#app {
    margin: 0px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 0px solid #1a1818;
    /* border-radius: 5px; */
}

.message-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message-item {
  padding: 16px;
  margin: 8px 0;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.message-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.message-header .email {
  color: #aaa;
  font-size: 12px;
}

.message-body {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.message-footer {
  font-size: 11px;
  color: #777;
}

.accordion {
    margin-top: 20px;
    max-width: 100%;
    width: calc(100% - 20px);
 }

 details {
    border: 2px solid #000;
    margin: 10px 0px 10px 0px;
    padding: 10px;
 }

 details summary {
    color: #2e2c20; 
    padding: 5px 10px;
    font-size: 1.3em;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 4px solid #ccc; /* Debugging outline */
 }

 details summary h5 { margin: 0;}