/* Estilos personalizados para iProcole TV Player - Inspirado en Netflix */

body {
    background: #111 !important;
    color: #fff !important;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.netflix-title {
    color: #ff2222;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #000;
}

.menu-link {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.menu-link:hover {
    color: #ff2222;
}

.btn-red {
    background: #ff2222;
    color: #fff;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s;
}

.btn-red:hover {
    background: #cc0000;
}

.btn-red-outline {
    border: 1px solid #ff2222;
    color: #ff2222;
    background: transparent;
    border-radius: 20px;
    font-weight: bold;
    padding: 0.4rem 1.2rem;
    margin-left: 0.2rem;
    transition: background 0.2s, color 0.2s;
}

.btn-red-outline:hover {
    background: #ff2222;
    color: #fff;
}

.playlist-list {
    color: #ff2222;
    font-size: 1.3rem;
    margin-top: 2rem;
    font-weight: bold;
}

.playlist-item {
    background: #222;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.play-btn {
    font-size: 2rem;
    color: #fff;
    background: #ff2222;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,34,34,0.4);
    transition: background 0.2s;
}

.play-btn:hover {
    background: #cc0000;
}

.lang-select {
    background: #222;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 120px;
    font-size: 1rem;
}

.user-icon {
    font-size: 2rem;
    color: #fff;
    margin-left: 1rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .netflix-title {
        font-size: 2rem;
    }
    .playlist-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-left: 0;
    }
    .container-fluid {
        padding: 1rem !important;
    }
}

/* Estilos para iProcoleTV */

/* Notificaciones tipo toast */
.toast-notification {
    display: none; /* Hide all toast notifications by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: center;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background-color: #06BCEF;
}

.toast-error {
    background-color: #ff2222;
}

.toast-info {
    background-color: #3498db;
}

.toast-notification.toast-error {
    display: block; /* Only show error notifications */
}
