body {
  background-color: rgb(50, 49, 49);
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  text-align: center;
}

img {
  display: block;
  margin: 10px auto;
}

hr {
  border: none;
  height: 4px;
  background-color: #555;
  border-radius: 10px;
  width: 95%;
  margin: 20px auto;
}

#top-bar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

#profileIcon {
  font-size: 22px;
  cursor: pointer;
}

button {
  padding: 10px 15px;
  background: #2563eb;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background-color: #1d4ed8;
}

.chat-popup {
  width: 97%;
  margin: auto;
}

.form-container {
  background: #242323;
  padding: 15px;
  border-radius: 10px;
}

#chat-messages {
  height: 500px;
  overflow-y: auto;
  padding: 10px;
  background: #121212;
  border-radius: 10px;
  margin-bottom: 10px;
}

.input-area {
  display: flex;
}

#msg-input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
}

.modal-content input {
  width: 90%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

.google-btn {
  background: white;
  color: black;
}

/* 🔔 TOP ALERT */
.top-alert {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  z-index: 1000;
  transition: top 0.3s ease;
}

.top-alert.show {
  top: 20px;
}
