/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Layout */
.dashboard {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  text-align: center;
  margin-bottom: 2rem;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.profile h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.profile p {
  font-size: 0.85rem;
  color: #777;
}

.sidebar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-nav a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  transition: background 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: #008080;
  color: white;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  height: 60px;
  background-color: #00796b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  color: white;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.start-selling {
  padding: 0.4rem 1rem;
  background-color: #ffa726;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Adverts Section */
.adverts {
  flex: 1;
  padding: 2rem;
  background-color: #fff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.2rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  background-color: #f3f3f3;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
}

.tab.active {
  background-color: #00796b;
  color: white;
  border-color: #00796b;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #555;
}

.empty-img {
  width: 200px;
  margin-bottom: 1rem;
}

.create-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #008080;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

header img {
  height: 30px;
}
