/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Header */
#header {
  background-color: #2c3e50;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#store-image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

#store-name {
  font-size: 22px;
  font-weight: 600;
  flex-grow: 1;
}

/* Hamburger */
#hamburger {
  font-size: 28px;
  cursor: pointer;
}

/* Top Menu (Hidden Initially) */
#top-menu {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #34495e;
  color: white;
  display: none;
  flex-direction: column;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  animation: slideDown 0.4s ease;
}

#top-menu.show {
  display: flex;
}

#close-btn {
  align-self: flex-end;
  padding: 10px 20px;
  font-size: 22px;
  cursor: pointer;
}

#top-menu-list {
  list-style: none;
  padding: 10px 20px;
}

#top-menu-list li {
  padding: 12px 8px;
  border-bottom: 1px solid #2c3e50;
  cursor: pointer;
}

#top-menu-list li:hover {
  background-color: #2c3e50;
}

/* Dashboard Cards */
#dashboard-content {
  padding: 25px;
}

#dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.dashboard-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

.dashboard-card:hover {
  transform: translateY(-4px);
}

.dashboard-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.dashboard-card p {
  font-size: 28px;
  color: #27ae60;
  font-weight: bold;
}
a{
  text-decoration: none;
  color: inherit;
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-30%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
