/* logout.css */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fff;
}

.logout-container {
  text-align: center;
  padding: 30px;
  max-width: 400px;
}

.logout-container h1 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.logout-container p {
  margin-top: 0;
  color: #666;
}

.back-home {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.back-home:hover {
  background: #45a049;
}
