/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f1f1f1;
  color: #000;
}

header {
  background-color: #e2e2e2;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: red;
}

.search-bar {
  display: flex;
}

.search-bar input {
  padding: 6px;
  width: 300px;
  border: 1px solid #ccc;
}

.search-bar button {
  padding: 6px 10px;
  background-color: #e2e2e2;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Layout */
.container {
  display: flex;
}

.sidebar {
  width: 200px;
  background-color: #fff;
  padding: 15px;
  border-right: 1px solid #ccc;
  height: calc(100vh - 60px);
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
  cursor: pointer;
}

/* Main content */
.content {
  flex: 1;
  padding: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.video {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
}

.video img {
  width: 100%;
  height: auto;
}

.video-info {
  margin-top: 8px;
}

.video-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.video-info p {
  font-size: 14px;
  color: #555;
}
