body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

.empty-message-wrapper {
    display: flex;
    justify-content: center;  /* horizontal center */
    padding: 40px 0;
}

.empty-message {
    font-size: 1.2rem;
    color: #555;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.messages {
    color: red;
    font-weight: bold;
}

.error-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f44336; /* red */
  color: white;
  padding: 1rem;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

#error-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
