@import url('reset.css');

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

main {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.watching-video {
  flex: 7;

}

aside {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.watching-video iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.header .container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #ddd; 
}


.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.left-header img {
  cursor: pointer;
  height: 24px;
  width: auto;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.right-header .search-icon {
  width: 52px;
  height: 30px;
  object-fit: cover;
}

.avatar-header {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.video-aside {
  display: flex;        
  gap: 12px;             
  cursor: pointer;
  align-items: flex-start; 
}

.video-aside img {
  width: 120px;
  height: 70px;
  border-radius: 0px;
  object-fit: cover;
}

.video-aside .titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.subtitle-sec {
  font-size: 12px;
  color: #555;
}
.description-video {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #111;
}

.video-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.channel-infos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-infos img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.titles .titulo-canal {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.titles .subtitulo-canal {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.video-actions button {
  background-color: #cc0000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-actions button:hover {
  background-color: #e60000;
}

.video-actions img {
  cursor: pointer;
}
.like-video {
  width: 65px;
  height: 22px;
}

.deslike-video {
  width: 85px;
  height: 22px;
}

.share-video {
  width: 95px;
  height: 22px;
}

.download-video {
  width: 95px;
  height: 22px;
}

.views {
  font-size: 15px;
  color: #000000;
  margin-bottom: 16px;
  font-weight: bold;
}

.more {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #5c5c5c;
}
