/* assets/css/estilos.css */

body {
    background-color: #F3F4F6;
    color: #111827;
}

/* --- Scrollbar Personalizado --- */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}

/* --- Sidebar Items --- */
.sidebar-item {
    position: relative;
    transition: all 0.2s ease-in-out;
}
.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 3px;
    background-color: #fbbf24;
    border-radius: 0 4px 4px 0;
    transition: height 0.2s ease;
}
.sidebar-item:hover {
    background-color: #f9fafb;
    color: #111827;
}
.sidebar-item:hover::before {
    height: 70%;
}
.sidebar-item.active {
    background-color: #fffbeb;
    color: #fbbf24;
}
.sidebar-item.active::before {
    height: 80%;
}

/* --- Links de Navegación --- */
.nav-link.active {
    color: #111827;
    font-weight: 800;
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fbbf24;
    border-radius: 2px;
}
.nav-link:hover {
    color: #fbbf24;
}

/* --- Tablas de Información (Ficha Técnica para ver-pelicula) --- */
.movie-info-table tr td {
    padding-bottom: 0.75rem;
}
.movie-info-table tr td:first-child {
    font-weight: 700;
    color: #4b5563;
    width: 130px;
    vertical-align: top;
}
.movie-info-table tr td:last-child {
    color: #111827;
    font-weight: 500;
}