/* ============================================
   PLANEA TV - Estilos Base
   ============================================ */

/* Reset y Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    font-family: 'PlutoTV Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

body {
    height: 100%;
    overflow-y: auto;
}

#root {
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Layout Principal */
.applicationContainer-0-2-1 {
    width: 100vw;
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
}

.overlayProviderContainer-0-2-2 {
    width: 100%;
    height: 100%;
    position: fixed;
}

.layoutContainer-0-2-10 {
    height: 100%;
    display: flex;
    z-index: 0;
    position: relative;
    flex-direction: column;
    background-color: #000000;
}

.layoutContainer-0-2-10:not(.loaded) {
    display: none;
}

/* Loader */
#wloaderMasterHome {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: block;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { 
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to { 
        -webkit-transform: rotate(360deg);
    }
}

/* Contenedor Principal */
.main-0-2-11 {
    height: 100%;
    display: flex;
    position: relative;
    overflow-y: auto;
    flex-direction: column;
}

.contentContainer-0-2-14 {
    flex: 1 1 70%;
    display: flex;
    z-index: 0;
    overflow: hidden;
}

.liveTVLayoutContainer-0-2-123 {
    z-index: 0;
    flex-direction: column;
}

.channelListContainer-0-2-125 {
    flex: 5 1 auto;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background: #000000;
    flex-direction: column;
}

.channelList-0-2-126 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.channelList-0-2-139 {
    color: #FFFFFF;
    width: 100% !important;
    height: 100vh !important;
    overflow-x: hidden !important;
}

#listcanales {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Scrollbar personalizado */
.custom-scroll {
    scroll-behavior: smooth;
}

.custom-scroll::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    border: 3px solid #121212;
    background: #616161;
    border-radius: 100px;
}

.custom-scroll::-webkit-scrollbar-track {
    border: 0;
    background: #121212;
}

/* Utilidades */
.visuallyHidden-0-2-17 {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    z-index: -1000;
    overflow: hidden;
    position: absolute;
    user-select: none;
    white-space: nowrap;
    -ms-user-select: none;
    -webkit-user-select: none;
}

