:root {
  --primary-color: #212a3f;
  --dark-color: #53575a;
  --white: #fff;
}

/* Quitar efecto azul al presionar botones */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* Index admin reels */
/*-----------index reels -----------------*/

body {
  font-family: "Saira", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.reels_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.reels_container .container {
  width: 80%;
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
}




.featured_container {
  padding: 30px 0 50px 0;
  position: relative;
}
.featured_container .prev,
.featured_container .next {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border: none;
  top: 50%;
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  background: none;
  color: var(--primary-color);
  transition: 0.3s ease;
}
.featured_container .prev {
  left: -40px;
  font-size: 20px;
}
.featured_container .next {
  right: -40px;
  font-size: 20px;
}
.featured_container .prev:hover,
.featured_container .next:hover {
  color: var(--dark-color);
}

.featured_container .featured_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow: hidden;
}
.featured_list .featured_card {
  width: calc(30% - 10px);
  display: flex;
  justify-content: center;
}

.featured_card video {
  max-width: 100%;
  max-height: 800px;
  margin: 0 auto;
}

.featured_container .indicadores {
  margin-top: 10px;
}
.featured_container .indicadores .glider-dot {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--dark-color);
  border-radius: 0;
  transition: 0.3s ease-in;
}

.featured_container .indicadores .glider-dot.active,
.featured_container .indicadores .glider-dot:hover {
  background: var(--primary-color);
}

@media only screen and (max-width: 640px) {
  .featured_container .prev {
    left: -28px;
    font-size: 20px;
  }
  .featured_container .next {
    right: -25px;
    font-size: 20px;
  }
}

/*-----------index reels -----------------*/

.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  color: white;
  background-color: #006cff;
  border-radius: 5px;
  font-size: 1.2rem;
  margin: 10px 0;
  border: 2px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-file-upload:hover {
  background-color: #0056d2;
  border-color: #0056d2;
}

input[type="file"] {
  display: none;
}

input[type="submit"] {
  font-size: 1.2rem;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #218838;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

video {
  max-height: 600px;
  max-width: 640px;
}

.delete-btn {
  background-color: #ff6347;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

.delete-btn:hover {
  background-color: #ff2e1a;
}

.btn-logout {
  background-color: #d33; /* Color de fondo rojo */
  color: white; /* Texto blanco */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px; /* Esquinas redondeadas */
}

.btn-logout:hover {
  background-color: #c22; /* Color más oscuro al pasar el mouse */
}
