* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #121212;
  color: #fefefe;
}

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background-color: #181818;
  flex-shrink: 0;
  padding: 1.5rem 0;
}
.sidebar .sidebar-logo {
  padding: 0 1.5rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(179, 179, 179, 0.1);
  display: flex;
  align-items: center;
}
.sidebar .sidebar-logo .logo-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #1db954;
}
.sidebar .sidebar-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
}
.sidebar .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .main-nav li a {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  color: #b3b3b3;
  text-decoration: none;
  transition: color background-color ease-in-out;
}
.sidebar .main-nav li a .icon {
  margin-right: 12px;
  font-size: 1.1rem;
}
.sidebar .main-nav li a:hover {
  color: #fefefe;
}
.sidebar .main-nav li.active a {
  color: #fefefe;
  background-color: rgb(11.25, 11.25, 11.25);
  border-left: 3px solid #1db954;
}

.main-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  height: 70px;
  background-color: #181818;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.dashboard-header h1 {
  font-size: 1.6rem;
  margin: 0;
  color: #1db954;
}
.dashboard-header .search-bar {
  display: flex;
}
.dashboard-header .search-bar input {
  padding: 8px 15px;
  border: 1px solid rgba(179, 179, 179, 0.3);
  background-color: #121212;
  color: #fefefe;
  border-radius: 8px 0 0 8px;
  width: 300px;
}
.dashboard-header .search-bar input:focus {
  outline: none;
  border-color: #1db954;
}
.dashboard-header .search-bar .search-btn {
  background-color: #1db954;
  color: #fefefe;
  border: none;
  padding: 8px 15px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
.dashboard-header .user-profile {
  display: flex;
  align-items: center;
}
.dashboard-header .user-profile .notification {
  margin-right: 20px;
  color: #b3b3b3;
  cursor: pointer;
}
.dashboard-header .user-profile .avatar {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #454545;
  color: #fefefe;
  border-radius: 50%;
  font-weight: bold;
}

.dashboard-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.section-title {
  margin: 1.5rem 0 1rem;
  font-size: 1.4rem;
  color: #fefefe;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.kpi-card {
  background-color: #181818;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  border-left: 3px solid transparent;
}
.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(29, 185, 84, 0.2);
}
.kpi-card .kpi-label {
  font-size: 0.9rem;
  color: #b3b3b3;
  margin-bottom: 0.5rem;
}
.kpi-card .kpi-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fefefe;
}
.kpi-card .kpi-trend {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 600;
}
.kpi-card .kpi-trend.success {
  color: #2ecc71;
}
.kpi-card .kpi-trend.warning {
  color: #f1c40f;
}
.kpi-card .kpi-trend.neutral {
  color: #b3b3b3;
}
.kpi-card.stat-total {
  border-left-color: #1db954;
}
.kpi-card.stat-royalty {
  border-left-color: #f1c40f;
}

.content-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.chart-panel, .activity-panel {
  background-color: #181818;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chart-panel {
  flex: 2;
  min-height: 400px;
}
.chart-panel .chart-placeholder {
  background-color: rgb(11.25, 11.25, 11.25);
  height: 300px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  border-radius: 8px;
}

.activity-panel {
  flex: 1;
}
.activity-panel .track-list {
  list-style: none;
  padding: 0;
}
.activity-panel .track-list .track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(179, 179, 179, 0.1);
  transition: background-color 0.3s ease-in-out;
}
.activity-panel .track-list .track-item:last-child {
  border-bottom: none;
}
.activity-panel .track-list .track-item .track-rank {
  font-weight: bold;
  color: #1db954;
  margin-right: 10px;
}
.activity-panel .track-list .track-item .track-info {
  flex-grow: 1;
  font-size: 0.95rem;
}
.activity-panel .track-list .track-item .track-streams {
  font-size: 0.8rem;
  color: #b3b3b3;
}
.activity-panel .track-list .track-item:hover {
  background-color: rgba(29, 185, 84, 0.1);
  padding-left: 10px;
}

@media (max-width: 992px) {
  .content-row {
    flex-direction: column;
  }
  .dashboard-header .search-bar {
    width: 40%;
  }
  .dashboard-header .search-bar input {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .dashboard-wrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .sidebar .sidebar-logo {
    display: none;
  }
  .sidebar .main-nav ul {
    display: flex;
    justify-content: space-around;
  }
  .sidebar .main-nav ul li {
    flex-grow: 1;
    text-align: center;
  }
  .sidebar .main-nav ul li a {
    justify-content: center;
  }
  .sidebar .main-nav ul .icon {
    display: none;
  }
  .dashboard-header h1 {
    display: none;
  }
  .dashboard-header .search-bar {
    width: 80%;
  }
  .kpi-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}/*# sourceMappingURL=style.css.map */