/* Global Styles */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #fff;
}

h2 {
  color: #fff;
}

a {
  color: #50fa7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Dashboard Layout */
.dashboard-container {
  display: flex;
}

.sidebar {
  width: 250px;
  background-color: #1e1e1e;
  padding: 20px;
  height: 100vh;
}

.sidebar .logo img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  font-weight: 700;
  font-size: 1.2rem;
}

.main-content {
  flex-grow: 1;
  padding: 30px;
  background-color: #2d2d2d;
}

section {
  margin-bottom: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="text"], textarea, select, input[type="file"] {
  padding: 10px;
  background-color: #333;
  border: 1px solid #444;
  color: #fff;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button.cta-button {
  background-color: #50fa7b;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  color: #121212;
  border: none;
  transition: background-color 0.3s;
}

button.cta-button:hover {
  background-color: #3fdb63;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-item {
  background-color: #444;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.channel-item a {
  font-size: 1rem;
  font-weight: 700;
}

footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.channel-video-preview {
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #000;
}

