/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


/* ================= HEADER ================= */
header {
  background: linear-gradient(135deg, #4c98af, #6fb1c7);
  text-align: center;
  padding: 20px;
  position: relative;
  color: white;
}

.logo {
  max-width: 80px;
  margin-bottom: 10px;
}


/* ================= MENU ================= */
.menu {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.menu-links {
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 8px 0;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.25s;
}

.menu-links.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-links a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
}

.menu-links a:hover {
  background: #f0f0f0;
}


/* ================= MAIN ================= */
.admin-container {
  padding: 30px;
  background: #f4f4f4;
  min-height: 80vh;
}


/* ================= TOP BAR ================= */
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.admin-top h2 {
  color: #333;
}


/* ================= LOGOUT ================= */
.logout-btn {
  padding: 10px 20px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.logout-btn:hover {
  background: #a71d2a;
}


/* ================= FEEDBACK GRID ================= */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


/* ================= FEEDBACK CARD ================= */
.feedback-card {
  background: white;
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feedback-card:hover {
  transform: translateY(-5px);
}

.feedback-name {
  font-weight: bold;
  margin-bottom: 10px;
}

.feedback-text {
  color: #555;
  line-height: 1.5;
}


/* ================= EMPTY STATE ================= */
.empty-state {
  text-align: center;
  margin-top: 20px;
  color: #777;
}


/* ================= FOOTER ================= */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
}