/* Estilos generales */
/* Navbar */
.navbar {
    background-color: #343a40;
   padding: 10px 8px;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    font-size: 1.1rem;
    padding: 8px 12px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Mega Menú */
.megaMenu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 1000;
}

.megaMenu .container-fluid {
    display: block !important;
}

/* Categorías */
.category-box {
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.category-box:hover {
    background: #dee2e6;
    transform: scale(1.01);
}

.category-box a {
    text-decoration: none;
    color: #303030;
    display: block;
    font-size: 1rem;
    padding: 2px;
    text-align: left;
}

.category-box a:hover {
    text-decoration: none;
}

/* Submenús */
.dropdown-menu {
    min-width: 200px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Estilo para móviles (Submenús se abren abajo) */
@media (max-width: 992px) {
    .dropdown-submenu .dropdown-menu {
        position: static;
        width: 100%;
        display: block;
    }
}

/* Nueva clase dropleft */
.dropleft {
    position: relative;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropleft:hover .dropdown-menu {
    display: block;
}

/* En móviles, los submenús de "Perfil" se abren hacia abajo */
@media (max-width: 992px) {
    .dropleft .dropdown-menu {
        position: static;
        width: 100%;
        display: block;
    }
}

/* Estilo específico para la barra de búsqueda dentro del li */
.search-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 240px;
}

.search-bar input {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar button {
    background-color: #007bff;
    color: white;
    border: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #0056b3;
}

/* Ajustes en pantallas pequeñas */
@media (max-width: 992px) {
    .search-bar {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .search-bar input {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-bar button {
        width: auto;
    }
}

/* Notificaciones */
.navbar-nav .nav-item .notification {
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.navbar-nav .nav-item .notification .dropdown-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item .notification .dropdown-item i {
    margin-right: 10px;
}

.badge-light {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.7rem;
    padding: 0.3em;
}

/* Estilo del menú de notificaciones */
.menuright {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* En pantallas pequeñas (móviles), muestra el menú debajo del ícono */
@media (max-width: 768px) {
    .menuright {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

/* Contenedor principal */
.buttons-enna {
    display: flex;
    align-items: center;
    gap: 4px;
}

.masthead-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para botones */
.icon-button, .avatar-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-button:hover, .avatar-button:hover {
    background-color: #454545;
}

/* Estilos para la imagen de avatar */
.avatar-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajustes responsivos */

@media (max-width: 992px) {
    .navbar {
        display: flex;
    }

    .buttons-enna {
        order: -1;
        width: auto;
        display: flex;
        justify-content: flex-end;
        padding: 10px 4px;
        background-color: #343a40;
    }
    .btn-menu-lateral{
        order: -2; 
    }
    .navbar-collapse {
        order: 1;
        width: 100%;
    }

    .buttons-enna .masthead-container {
        margin-left: 0px;
    }

    .buttons-enna .icon-button, .buttons-enna .avatar-button {
        width: 40px;
        height: 40px;
    }
}
        @media (max-width: 480px) {
              .buttons-enna .masthead-container {
        margin-left: 0px;
    }
        }
/*** NOTIFICACIONES ***/
/* Contenedor principal de notificaciones */
.notificationhells-container {
    max-width: 480px;
    max-height: 633px;
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow-y: auto;
}

/* Encabezado de notificaciones */
.notificationhell-header {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.notificationhell-header h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

/* Lista de notificaciones */
.notificationhell-list {
    padding: 8px 0;
}

/* Elemento de notificación */
.notificationhell-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.notificationhell-item.unread {
    background-color: #f9f9f9;
}

.notificationhell-item:hover {
    background-color: #f0f0f0;
}

/* Enlace de notificación */
.notificationhell-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.notificationhell-link:hover {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.05);
}

/* Avatar de notificación */
.notificationhell-avatar {
    margin-right: 12px;
}

.notificationhell-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Contenido de notificación */
.notificationhell-content {
    flex-grow: 1;
}

.notificationhell-message {
    font-size: 0.95rem;
    margin: 0;
    color: #333;
}

.notificationhell-metadata {
    font-size: 0.85rem;
    color: #666;
}

/* Miniatura de notificación */
.notificationhell-thumbnail {
    margin-left: 12px;
}

.notificationhell-thumbnail img {
    width: 86px;
    height: 48px;
    border-radius: 4px;
}

/* Menú de notificación */
.notificationhell-menu {
    margin-left: 12px;
}

.menu-buttonhell {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-buttonhell svg {
    width: 24px;
    height: 24px;
}

/*** MENÚS DESPLEGABLES ***/
/* Contenedor principal */
.dropdown-menu-custom {
    position: absolute;
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    overflow-y: auto;
    width: auto !important;
        max-width: 400px !important;
}
       
/* Scroll vertical */
.contenedorscroll {
    overflow-y: auto;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .dropdown-menu-custom {
        width: 100% !important;
        left: 0 !important;
        
    }
 
        .buttons-enna {
        width: calc(100% - 60px);
    }
}

/*** ESTILOS ESPECÍFICOS PARA LOS MENÚS ***/
/* Menú de perfil */
.colphne-dropdown-container {
    position: fixed;
    left: 642px;
    top: 11px;
    z-index: 2202;
    outline: none;
    background: #FFF;
}

.colphne-content-wrapper {
    max-width: 300px;
    max-height: 630px;
    box-sizing: border-box;
    outline: none;
}

.colphne-spinner {
    display: none; /* Oculto por defecto */
}

.colphne-header {
    display: flex;
    align-items: center;
    padding: 10px;
}

.colphne-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.colphne-channel-info {
    flex: 1;
}

.colphne-channel-name {
    font-weight: bold;
}

.colphne-channel-handle {
    color: #666;
}

.colphne-manage-account {
    color: #065fd4;
    text-decoration: none;
}

.colphne-menu-container {
    padding: 10px;
}

.colphne-menu-section {
    margin-bottom: 20px;
}

.colphne-menu-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.colphne-menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

.colphne-menu-item:hover {
    background-color: #f1f1f1;
}

.colphne-menu-item .colphne-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.colphne-menu-item .colphne-label {
    flex: 1;
}

.colphne-menu-item .colphne-right-icon {
    width: 24px;
    height: 24px;
}

.colphne-footer {
    padding: 10px;
    text-align: center;
    color: #666;
}

/* Menú de login */
.groza-content-wrapper {
    max-width: 300px;
    max-height: 630px;
    box-sizing: border-box;
    outline: none;
}

.groza-spinner {
    display: none; /* Oculto por defecto */
}

.groza-spinner-container {
    position: relative;
    width: 40px;
    height: 40px;
}

.groza-spinner-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: groza-spinner-rotate 1.2s linear infinite;
}

.groza-circle-clipper {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.groza-circle {
    width: 200%;
    height: 100%;
    border: 3px solid #000;
    border-radius: 50%;
    border-bottom-color: transparent;
    animation: groza-spinner-rotate 1.2s linear infinite;
}

@keyframes groza-spinner-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.groza-menu-container {
    padding: 10px;
}

.groza-menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

.groza-menu-item:hover {
    background-color: #f1f1f1;
}

.groza-content-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.groza-primary-text-container {
    flex: 1;
}

.groza-label {
    font-weight: bold;
}
        .btn-menu-lateral {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-right: 2px;
}

.btn-menu-lateral:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-menu-lateral .activeform,
.btn-menu-lateral .deactiveform {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-menu-lateral
        /****DASHBOARD****/
        /* Estilos generales del dashboard */
.dashboard {
    display: flex;
    height: auto;
    width: 100%;
    overflow: hidden;
    margin-top: 56px; /* Valor temporal, será reemplazado por JavaScript */
}

/* Menú lateral */
 .menu-dashboard {
            width: 256px; /* Ancho por defecto */
            background-color: #2c3e50; /* Color de fondo oscuro */
            color: #fff;
            height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
            overflow-y: auto; /* Hace que el menú sea desplazable si es muy largo */
            padding: 4px;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
            z-index: 1000; /* Z-index alto para asegurar que esté por encima */
            position: relative; /* Posición relativa por defecto */
        }
/* Estilos para la lista del menú */
.menu-lateral {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-lateral li {
    margin-bottom: 2px;
}

.menu-lateral li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-lateral li a:hover {
    background-color: #34495e; /* Color de fondo al hacer hover */
}

/* Iconos */
.menu-lateral li a .icon {
    margin-right: 2px;
    font-size: 14px;
}

.menu-lateral li a .text {
    font-size: 14px;
}

/* Submenús */
.submenu-lateral,
.submenu-lateral-children {
    list-style: none;
    padding-left: 4px;
    margin-top: 2px;
}

/* Estilos para los submenús anidados */
.submenu-lateral-children {
    padding-left: 8px; /* Indentación adicional para submenús anidados */
}
/* Contenedor principal */
/* Estilos generales para .dashboard */
.dashboard {
    display: flex;
    width: 100%;
    overflow: hidden;
}
        /* Estilos para .menu-dashboard */
.menu-dashboard {
    width: 256px; /* Ancho fijo del menú */
    background-color: #2c3e50; /* Color de fondo oscuro */
    color: #fff;
    height: calc(100vh - 80px); /* Altura de la ventana menos la altura del navbar */
    overflow-y: auto; /* Hace que el menú sea desplazable si es muy largo */
    padding: 4px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 998; /* Z-index alto para asegurar que esté por encima */
    position: fixed; /* Fijo en la pantalla */
    left: 0;
    transition: transform 0.3s ease; /* Animación suave */
}

/* Estilos para .container-dashboard */
.container-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 256px; /* Margen izquierdo igual al ancho del menú */
}

   
        /* Estilos para pantallas menores a 992px */
@media (max-width: 992px) {
    .menu-dashboard {
        transform: translateX(0); /* Oculta el menú fuera de la pantalla */
    }

    .menu-dashboard.active {
        transform: translateX(0); /* Muestra el menú */
    }

    .container-dashboard {
        margin-left: 0; /* Elimina el margen izquierdo */
        width: 100%; /* Ocupa el 100% del ancho */
    }
}

/* Estilos para pantallas menores a 576px */
@media (max-width: 576px) {
    .menu-dashboard {
        width: 100%; /* Ocupa el 100% del ancho */
    }
}
/* Header */
.header-dashboard {
    padding: 1rem;
    background-color: #f8f9fa; /* Color de fondo claro */
    border-bottom: 1px solid #dee2e6;
    display: flex;
    flex-direction: column; /* Por defecto, los elementos se apilan verticalmente */
    align-items: flex-start; /* Alinear elementos a la izquierda */
}

.header-dashboard h5 {
    margin: 0;
}
        .nav-breadcrumb{
            width:100%;
        }
.breadcrumb {
    margin-bottom: 0;
    width: 100%; /* Por defecto, el breadcrumb ocupa el 100% del ancho */
}

/* Media query para pantallas mayores a 768px */
@media (min-width: 768px) {
    .header-dashboard {
        flex-direction: row; /* Cambiar a disposición horizontal */
        justify-content: space-between; /* Separar el título y el breadcrumb */
        align-items: center; /* Centrar verticalmente los elementos */
    }
 .nav-breadcrumb{
            width:auto;
        }
    .breadcrumb {
        width: auto; /* El breadcrumb ya no ocupa el 100% del ancho */
    }
}


/* Footer */
.footer-dashboard {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: center;
}
        /**Titles**/
        /* Estilos para el título del menú lateral */
.menu-lateral-title {
    font-family: serif; /* Fuente serif */
    font-size: 1.25rem; /* Tamaño de fuente similar a un h4 */
    font-weight: bold; /* Negrita */
    text-align: left; /* Alineación a la izquierda */
    margin: 4px 0; /* Margen superior e inferior */
    padding: 0.5rem 1rem; /* Espaciado interno */
}

/* Estilos para el título del dropdown */
.dropdown-title {
    font-family: serif; /* Fuente serif */
    font-size: 1.25rem; /* Tamaño de fuente similar a un h4 */
    font-weight: bold; /* Negrita */
    text-align: left; /* Alineación a la izquierda */
    margin: 4px 0; /* Margen superior e inferior */
    padding: 0.5rem 1rem; /* Espaciado interno */
    background-color: #e9ecef; /* Fondo gris claro */
    border-left: 4px solid #007bff; /* Borde lateral azul */
}

/* Estilos para el título de la categoría */
.category-title {
    font-family: serif; /* Fuente serif */
    font-size: 1.25rem; /* Tamaño de fuente similar a un h4 */
    font-weight: bold; /* Negrita */
    text-align: left; /* Alineación a la izquierda */
    margin: 4px 0; /* Margen superior e inferior */
    padding: 0.5rem 1rem; /* Espaciado interno */
   border-left: 4px solid #007bff; /* Borde lateral azul */
}
.dropdown-toggle.dropright::after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    vertical-align: middle;
    margin-left: .5em;
    margin-right: -.25em;
}

/* Estilos para las tarjetas de streaming */
.stream-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s;
    height: 100%;
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stream-card__image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stream-card__image-container:hover {
    opacity: 0.9;
}

.stream-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stream-card__image-container:hover .stream-card__image {
    transform: scale(1.05);
}

.stream-card__live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e91916;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

.stream-card__viewers {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

.stream-card__content {
    display: flex;
    padding: 10px;
    align-items: flex-start;
}

.stream-card__avatar-container {
    margin-right: 10px;
    flex-shrink: 0;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stream-card__avatar-container:hover {
    box-shadow: -5px 0 0 #e91916, 0 2px 8px rgba(233, 25, 22, 0.4);
    transform: translateX(2px);
}

.stream-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.stream-card__info {
    flex-grow: 1;
    min-width: 0; /* Permite que el texto se trunque correctamente */
}

.stream-card__title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stream-card__title:hover {
    color: #e91916 !important;
}

.stream-card__channel {
    font-size: 13px;
    color: #53535F;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stream-card__channel:hover {
    color: #e91916 !important;
}

.stream-card__verified {
    margin-left: 4px;
    color: #bf94ff;
}

.stream-card__game {
    font-size: 13px;
    color: #adadb8;
    margin-bottom: 6px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stream-card__game:hover {
    color: #e91916 !important;
}

.stream-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.stream-card__tag {
    background: rgba(173, 173, 184, 0.22);
    color: #53535f;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stream-card__tag:hover {
    background-color: #3a3a4a !important;
    color: #ffffff !important;
}

.stream-card__options {
    background: none;
    border: none;
    color: #adadb8;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.stream-card__options:hover {
    color: #efeff1;
}

.page-title {
    color: #efeff1;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Asegurar que las imágenes se carguen correctamente */
.card-container {
    margin-bottom: 20px;
}

/* Estilos para enlaces generales */
.stream-card a {
    text-decoration: none !important;
}

.stream-card a:hover {
    text-decoration: none !important;
}
/* Estilos para el componente "Mostrar más" */
.show-morex__move-up {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.show-morex__line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a4a6d, transparent);
    flex: 1;
    max-width: 150px;
}

.show-morex__button {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
    position: relative;
    overflow: hidden;
}

.show-morex__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
    background: linear-gradient(135deg, #5a0db5 0%, #1c65e0 100%);
    color:#ffffff !important;
    text-decoration:none;
}

.show-morex__button:active {
    transform: translateY(0);
}

.show-morex__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.show-morex__button:hover::before {
    left: 100%;
}

.show-morex__button-text {
    margin-right: 8px;
}

.show-morex__icon {
    transition: transform 0.3s ease;
}

.show-morex__button:hover .show-morex__icon {
    transform: translateY(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .show-morex__move-up {
        flex-direction: column;
        gap: 1rem;
    }
    
    .show-morex__line {
        max-width: 100px;
    }
    
    .show-morex__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-morex__move-up {
    animation: fadeInUp 0.6s ease-out;
}
/***menu lateral**/
/* Estilos para el elemento de canal de mettcamxxx */
.mettcamxxx-channel-item {
    position: relative;
}

.mettcamxxx-channel-item .side-nav-card__link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.mettcamxxx-channel-item .side-nav-card__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mettcamxxx-channel-item .side-nav-card__avatar {
    margin-right: 12px;
    flex-shrink: 0;
}

.mettcamxxx-channel-item .mettcamxxx-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.mettcamxxx-channel-item .mettcamxxx-image-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mettcamxxx-channel-item .side-nav-card__content {
    flex: 1;
    min-width: 0;
}

.mettcamxxx-channel-item .side-nav-card__metadata {
    margin-bottom: 4px;
}

.mettcamxxx-channel-item .side-nav-card__title {
    margin-bottom: 2px;
}

.mettcamxxx-channel-item .channel-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mettcamxxx-channel-item .game-title {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mettcamxxx-channel-item .side-nav-card__live-status {
    display: flex;
    align-items: center;
}

.mettcamxxx-channel-item .live-indicator-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mettcamxxx-channel-item .mettcamxxx-channel-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e91916;
}

.mettcamxxx-channel-item .live-text {
    font-size: 12px;
    color: #e91916;
    margin: 0;
    font-weight: 600;
}

.mettcamxxx-channel-item .viewer-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mettcamxxx-channel-item .viewer-number {
    font-size: 12px;
    color: #aaa;
}

.mettcamxxx-channel-item .viewer-text {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* Asegurar que el icono se alinee correctamente */
.mettcamxxx-channel-item .icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}