 
     :root {
            --color-dark-bg: #16181d;
            --color-secondary-bg: #21232a;
            --color-lighter-bg: #1c1d22;
            --color-border: hsla(0,0%,100%,.12);
            --color-text: hsla(0, 0%, 100%, 0.7);
            --color-white: #ffffff;
            --color-red: hsl(0, 100%, 60%);
            --color-green: #22c55e;
            --color-blue: #3b82f6;
        }
        .modern-nav {
            background-color: var(--color-dark-bg);
            padding: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            height: 4rem;
            position: relative;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 100%;
        }
        .icon-button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--color-text);
            margin-right: 1rem;
            padding: 0.25rem;
            transition: opacity 0.2s;
        }
        .icon-button:hover {
            opacity: 0.8;
        }
        .modern-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--color-white);
        }
        .modern-logo svg {
            width: 2.5rem;
            height: 2.5rem;
        }
        .desktop-menu {
            display: none;
            align-items: center;
            margin-left: 1rem;
            gap: 1.5rem;
            color: var(--color-text);
            font-size: 0.875rem;
            font-weight: 500;
        }
        .menu-item {
            text-decoration: none;
            color: var(--color-text);
            transition: color 0.2s;
        }
        .menu-item:hover {
            color: var(--color-white);
            text-decoration:none;
        }
        .menu-item.active {
            color: var(--color-white);
            font-weight: 600;
        }
        .action-icons {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .user-avatar {
            background-color: var(--color-secondary-bg);
            padding: 0.5rem;
            border-radius: 9999px;
            position: relative;
            transition: opacity 0.2s;
        }
        .avatar-initial {
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background-color: #4b5563;
            color: var(--color-white);
            font-weight: bold;
            text-transform: uppercase;
        }
        .online-indicator {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0.5rem;
            height: 0.5rem;
            background-color: var(--color-green);
            border-radius: 9999px;
            border: 1px solid var(--color-white);
        }
        .user-menu {
            display: none;
            position: absolute;
            right: 0;
            top: calc(100% + 0.5rem);
            width: 15rem;
            background-color: var(--color-secondary-bg);
            border-radius: 0.375rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            z-index: 20;
            overflow: hidden;
            z-index: 999999;
        }
        .user-menu.open {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }
        .user-info {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            background-color: var(--color-lighter-bg);
        }
        .user-details {
            margin-left: 0.75rem;
        }
        .user-name {
            font-size: 1rem;
            font-weight: 600;
        }
        .user-email {
            font-size: 0.875rem;
            color: #9ca3af;
        }
        .logout-button {
            margin-left: auto;
            color: #ef4444;
            transition: color 0.2s;
        }
        .logout-button:hover {
            color: #dc2626;
        }
        .menu-divider {
            border-bottom: 1px solid var(--color-border);
        }
        .menu-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            color: var(--color-white);
            text-decoration: none;
            transition: background-color 0.2s;
        }
        .menu-link:hover {
            background-color: rgba(0, 0, 0, 0.2);
            text-decoration:none;
        }
        .menu-icon {
            margin-right: 0.75rem;
        }
        .menu-text {
            font-size: 0.875rem;
        }
        .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 16rem;
    z-index: 99999;
    background-color: #1c1d22;
    border-right: 1px solid hsla(0,0%,100%,.12);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
}
.mobile-nav svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    border-radius: 4px;
    margin: 2px 8px;
}

.mobile-menu a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.mobile-menu .menu-item {
    margin: 4px 8px;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid hsla(0,0%,100%,.12);
}

#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: flex;
}

@media (min-width: 1024px) {
    #mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    margin-top: 0;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s;
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
}

.mobile-nav-item:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
        .mobile-nav-icon {
            margin-right: 0.5rem;
        }
        .mobile-divider {
    width: 100%;
    border-top: 1px solid hsla(0,0%,100%,.12);
    margin: 0.5rem 0;
}

.mobile-footer {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid hsla(0,0%,100%,.12);
    margin-top: auto;
}

.mobile-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin: 0;
    border-radius: 0;
}

.mobile-footer svg {
    width: 24px;
    height: 24px;
}
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }
        .search-modal.open {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }
        .search-container {
            width: 100%;
            max-width: 600px;
            background-color: var(--color-secondary-bg);
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .search-input {
            width: 100%;
            padding: 0.75rem;
            background-color: var(--color-dark-bg);
            border: 1px solid var(--color-border);
            border-radius: 0.375rem;
            color: var(--color-white);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--color-blue);
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        @media (min-width: 768px) {
            .hamburger-button {
                display: none;
            }
            .desktop-menu {
                display: flex;
            }
            .bookmark-icon {
                display: inline-flex;
            }
        }
        
      /* Auth Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.auth-modal-container {
    position: relative;
    width: 95%;
    max-width: 64rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #1a1a1a;
    color: #e5e7eb;
    margin: 0.75rem;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.auth-modal.open .auth-modal-container {
    transform: scale(1);
}

@media (min-width: 768px) {
    .auth-modal-container {
        flex-direction: row;
    }
}

.auth-modal-left {
    width: 100%;
    background: linear-gradient(to bottom right, #2a1d1f, #1e1f24);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .auth-modal-left {
        width: 50%;
    }
}

.auth-modal-right {
    width: 100%;
    padding: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .auth-modal-right {
        width: 50%;
    }
}

@media (min-width: 640px) {
    .auth-modal-left,
    .auth-modal-right {
        padding: 2rem;
    }
}

.auth-logo {
    height: auto;
    margin-bottom: 1.5rem;
}

.auth-privacy-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-link {
    text-decoration: underline;
    color: #ff3e3e;
    cursor: pointer;
}

.auth-link:hover {
    color: #ff6b6b;
}

.auth-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.auth-close-btn:hover {
    color: #f9fafb;
}

.auth-close-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.auth-form-header {
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.auth-forms {
    position: relative;
}

.auth-form {
    display: none;
    transition: opacity 0.3s ease;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease-out forwards;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ff3e3e;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.5rem 0.75rem;
    background-color: #1f1f1f;
    color: #f5f5f5;
    border: 1px solid #ff3e3e;
    border-radius: 0.25rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #ff6b6b;
    background-color: #252525;
}

.form-input:hover {
    background-color: #262626;
    border-color: #ff5a5a;
}

.auth-submit-btn {
    width: 100%;
    height: 36px;
    min-width: 64px;
    padding: 0 16px;
    background-color: transparent;
    color: #ff3e3e;
    font-weight: 700;
    border: 1px solid #ff3e3e;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff3e3e;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.2s ease-in-out;
}

.auth-submit-btn:hover::before {
    opacity: 0.2;
}

.auth-form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.auth-link-action {
    color: #ff3e3e;
    text-decoration: none;
    cursor: pointer;
}

.auth-link-action:hover {
    color: #ff6b6b;
}

/* Animation effects */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Settings Modal Styles - Updated Width Design */
.settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.settings-modal.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.settings-modal-container {
    position: relative;
    width: 95%;
    max-width: 650px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #1a1a1a;
    color: #e5e7eb;
    margin: 0.75rem;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.settings-modal.open .settings-modal-container {
    transform: scale(1);
}

.settings-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #333;
    background-color: #1a1a1a;
}

.settings-modal-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
}

.settings-close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s ease;
}

.settings-close-btn:hover {
    color: #f9fafb;
}

.settings-close-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.settings-modal-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.75rem;
}

.settings-section {
    display: none;
}

.settings-section.active {
    display: block;
}

.settings-row {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #333;
    position: relative;
}

.settings-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Avatar styles */
.settings-avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem;
}

.settings-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.user-avatar-container {
    width: 100%;
    height: 100%;
}

.user-avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.loading-overlay.active {
    display: flex;
}

.loading-icon {
    color: white;
    font-size: 1.5rem;
}

.avatar-upload-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.avatar-upload-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.avatar-upload-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: transparent;
    color: #ff3e3e;
    border: 1px solid #ff3e3e;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.925rem;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s;
}

.avatar-upload-btn:hover {
    background-color: rgba(255, 62, 62, 0.1);
}

/* Input field styles */
.settings-field {
    margin-bottom: 1.25rem;
    position: relative;
    width: 100%;
}

.settings-field-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    justify-content: space-between;
}

.settings-field label {
    display: block;
    font-size: 0.925rem;
    font-weight: 500;
    color: #ff3e3e;
    margin-bottom: 0.6rem;
}

.settings-input {
    width: 100%;
    padding: 0.85rem;
    background-color: #1f1f1f;
    color: #ffffff;
    border: 1px solid #ff3e3e;
    border-radius: 0.25rem;
    font-size: 0.925rem;
    transition: border-color 0.2s ease;
}

.settings-input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.settings-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #242424;
}

.email-input {
    border-color: #333;
    color: #9ca3af;
}

/* Password input with toggle */
.password-input-wrapper {
    position: relative;
}

.toggle-password-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
}

.eye-icon {
    width: 22px;
    height: 22px;
}

.input-requirements {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.3rem;
}

.character-count {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Save button */
.settings-save-btn {
    position: absolute;
    right: 0;
    bottom: 1.75rem;
    padding: 0.6rem 1.75rem;
    background-color: transparent;
    color: #ff3e3e;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

/* Para el nuevo contenedor del botón de guardar contraseña */
.settings-save-container {
    margin-top: 25px !important;
    display: flex;
    justify-content: flex-end;
}

.settings-save-container .settings-save-btn {
    position: static;
    bottom: auto;
    right: auto;
}

.settings-save-btn:hover {
    background-color: rgba(255, 62, 62, 0.1);
}

.settings-save-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Password section specific styles */
.password-section {
    padding-bottom: 3.25rem;
}

/* Error and success messages */
.settings-response {
    padding: 0.85rem;
    margin-bottom: 1.25rem;
    border-radius: 0.25rem;
    font-size: 0.925rem;
    display: none;
}

.settings-response.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.settings-response.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .settings-field-group {
        flex-direction: row;
    }
    
    .settings-modal-container {
        max-width: 650px;
    }
}

@media (min-width: 768px) {
    .settings-modal-container {
        max-width: 680px;
    }
}

/* INPUTS: mejora contraste y visibilidad */
.settings-input {
    background-color: #1f1f1f;
    color: #f5f5f5;
    border: 1px solid #ff3e3e;
    box-shadow: inset 0 0 0 1px rgba(255, 62, 62, 0.3);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings-input:focus {
    border-color: #ff6b6b;
    background-color: #252525;
    color: #fff;
}

.settings-input:disabled {
    background-color: #2a2a2a;
    color: #b0b0b0;
    border-color: #444;
    opacity: 1;
    cursor: not-allowed;
}

/* INPUT PLACEHOLDERS: visibilidad */
.settings-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* INPUT hover */
.settings-input:hover:not(:disabled) {
    background-color: #262626;
    border-color: #ff5a5a;
}

/* EMAIL INPUT específicamente */
.email-input {
    background-color: #2a2a2a;
    color: #d1d5db;
    border-color: #444;
}

/* INPUT CONTAINER hover efecto sutil */
.settings-field:hover .settings-input:not(:disabled) {
    background-color: #262626;
}

/* Contraste del toggle password icon */
.toggle-password-btn svg {
    color: #d1d5db;
}

.toggle-password-btn:hover svg {
    color: #ffffff;
}

/* Ajustar z-index para el toast */
.swal2-container, #toast-container {
    z-index: 100000 !important;
}

/* Efectos de interacción añadidos para consistencia */
.toggle-password-btn.active .eye-icon {
    color: #ff3e3e;
}

.ripple, .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.5s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to { transform: scale(1); opacity: 0; }
}

.updated {
    animation: highlight 1s ease;
}

@keyframes highlight {
    0%, 100% { background-color: transparent; }
    50% { background-color: rgba(255, 62, 62, 0.2); }
}

.settings-field.focused {
    box-shadow: 0 0 0 2px rgba(255, 62, 62, 0.3);
}

.settings-save-btn.loading, .auth-submit-btn.loading {
    position: relative;
    overflow: hidden;
}

.settings-save-btn.loading::after, .auth-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/*SPECIAL*/
.c-blog__heading.style-2 i {
						  background: -webkit-linear-gradient(left, #000000 40%,#000000);
						  background: -o-linear-gradient(right, #000000 40%,#000000);
						  background: -moz-linear-gradient(right, #000000 40%,#000000);
						  background: linear-gradient(to right, #000000 40%,#000000);
					 ;}.c-blog__heading.style-2 i:after, .settings-page .nav-tabs-wrap ul.nav-tabs li.active:after { border-left-color: #000000 ; }.site-header .main-navigation.style-1, .widget-heading, .widget.background:after, .c-blog__heading.style-2 i, .tab-wrap .c-nav-tabs ul.c-tabs-content li.active a:after, .tab-wrap .c-nav-tabs ul.c-tabs-content li:hover a:after, .tab-wrap .c-nav-tabs ul.c-tabs-content li a:after, .related-heading.font-nav, .c-blog__heading.style-3, .settings-page .nav-tabs-wrap ul.nav-tabs li.active a, .off-canvas {
						  background: -webkit-linear-gradient(left, #000000 40%,#000000);
						  background: -o-linear-gradient(right, #000000 40%,#000000);
						  background: -moz-linear-gradient(right, #000000 40%,#000000);
						  background: linear-gradient(to right, #000000 40%,#000000);
					 ;}.widget-heading:after, .related-heading.font-nav:after, .genres_wrap .c-blog__heading.style-3.active:after { border-top-color: #000000 ;}body.modal-open .modal .modal-content a:hover, .tab-wrap .c-nav-tabs ul.c-tabs-content li.active a, .tab-wrap .c-nav-tabs ul.c-tabs-content li:hover a, body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-summary .post-content .post-content_item .summary-content:not(.release-year) a:hover, body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-summary .post-content .post-content_item .summary-content.release-year a:hover, .c-blog-post .entry-header .entry-meta .post-on:before, .manga-slider .slider__container .slick-dots li.slick-active button:before, .manga-slider .slider__container .slick-dots li button:hover:before, body.manga-page .profile-manga .tab-summary .summary_content_wrap .summary_content .post-status .manga-action .count-comment .action_icon a i, body.manga-page .profile-manga .tab-summary .summary_content_wrap .summary_content .post-status .manga-action .add-bookmark .action_icon a i, body.manga-page .profile-manga .tab-summary .summary_content_wrap .summary_content .post-status .manga-action .count-comment .action_detail a i, body.manga-page .profile-manga .tab-summary .summary_content_wrap .summary_content .post-status .manga-action .add-bookmark .action_detail a i, body.manga-page .profile-manga .post-title a, body.manga-page .content-readmore:hover, body.text-ui-light.manga-page .content-readmore:hover, .genres_wrap .genres__collapse .genres ul li a:hover, .genres_wrap .genres__collapse .genres ul li a:hover:before, .c-blog-post .entry-header .entry-meta .post-on .posted-on a:hover, body.search .c-search-header__wrapper #search-advanced .search-advanced-form .form-group.checkbox-group .checkbox label:hover, .site-header .main-navigation .search-navigation .menu-search .open-search-main-menu, .c-btn.c-btn_style-2, body.search .c-search-header__wrapper .search-content .btn-search-adv, body.reading-manga .entry-header .entry-header_wrap .action-icon ul li a, body.reading-manga .c-select-bottom .entry-header_wrap .action-icon ul li a, .widget.c-released .released-item-wrap ul.list-released li a:hover, body.manga-page .profile-manga .post-title h1, .genres_wrap .genres__collapse #genres ul li:hover a, .genres_wrap .genres__collapse #genres ul li:hover a:before, input[type=checkbox]:checked + label:before, input[type=radio]:checked + label:before, .genres_wrap a.btn-genres, .c-breadcrumb .breadcrumb li a:hover, body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-summary .post-content .post-content_item.mg_genres .summary-content, body.page .c-page-content .c-page .c-page__content .page-content-listing .page-listing-item .page-item-detail .item-summary .list-chapter .chapter-item .vol a:hover, #hover-infor .item_thumb .post-title a, body.manga-page .version-chap:before, body.manga-page .content-readmore:hover, body.manga-page .chapter-readmore:hover, .icon-load-info, .c-blog-post .entry-header .entry-meta .post-on .c-blog__date .post-category a:hover, .woocommerce ul.products li.product .price, .woocommerce div.entry-summary p.price, .woocommerce div.entry-summary form.cart .variations .label, .woocommerce div.entry-summary form.cart .quantity-text, .widget_product_categories .product-categories li a:hover, .woocommerce ul.products li.product h2:hover, .woocommerce .c-woo-breadcrumb a:hover, .site-header .c-sub-header-nav .c-sub-nav_wrap .c-modal_item .c-user_item .c-user_menu a:hover, .site-header .c-sub-header-nav .c-sub-nav_wrap .sub-nav_content .sub-nav_list li:hover > a, .settings-page .action i.ion-ios-close:hover:before, .settings-page .list-chapter .chapter-item a:hover, .settings-page .tabs-content-wrap .tab-group-item .tab-item .history-content .item-infor .chapter span a, .settings-page .nav-tabs-wrap ul.nav-tabs li:not(.active):hover a, .main-color,
.site-header .c-sub-header-nav .c-sub-nav_wrap .sub-nav_content .sub-nav_list li.menu-item-has-children.active > a,.woocommerce .woocommerce-ordering:after,.text-ui-light .widget.c-popular .popular-item-wrap .popular-content .chapter-item .chapter a:hover, body.text-ui-light .settings-page .list-chapter .chapter-item .chapter a:hover,body.search.text-ui-light .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-meta .latest-chap .chapter a:hover			{ color: #000000 ;}.c-blog__heading.style-2 i:after{border-right-color:#000000 !important}body.page.text-ui-light .c-page-content .c-page .c-page__content .page-content-listing .page-listing-item .page-item-detail .item-summary .list-chapter .chapter-item .chapter a:hover, .text-ui-light .widget.c-popular .popular-item-wrap .popular-content .chapter-item .chapter a:hover,#hover-infor .item_thumb .post-title a{color: #FFFFFF}.navigation-ajax .load-ajax:not(.show-loading):hover, body.manga-page .page-content-listing.single-page .listing-chapters_wrap > ul.main.version-chap .sub-chap > li:before, .shortcode-manga-chapters .listing-chapters_wrap > ul.main.version-chap .sub-chap > li:before, .c-wg-button-wrap .btn:hover, body.manga-page .page-content-listing.single-page .listing-chapters_wrap ul.main.version-chap .wp-manga-chapter:before, .site-header .search-main-menu form input[type=submit], .form-submit input[type=submit], #comments.comments-area #respond.comment-respond .comment-form .form-submit #submit, .c-btn.c-btn_style-1, .settings-page input[type="submit"], .settings-page .remove-all #delete-bookmark-manga, body.manga-page .page-content-listing.single-page .listing-chapters_wrap > ul.main.version-chap li .wp-manga-chapter:before, .woocommerce ul.products li.product .button, .woocommerce span.onsale, .woocommerce .widget_price_filter .price_slider_amount .button:not(:hover), .woocommerce .woocommerce-pagination .page-numbers li span.current, .woocommerce .woocommerce-pagination .page-numbers li .prev:hover, .woocommerce .woocommerce-pagination .page-numbers li .next:hover, .woocommerce div.entry-summary form.cart .single_add_to_cart_button,.post-password-form input[name="Submit"] { background: #000000 ;}.navigation-ajax .load-ajax:not(.show-loading):hover, .popular-slider .slider__container .slider__item .slider__content .slider__content_item .chapter-item .chapter a:hover, body.search .c-search-header__wrapper .search-content .btn-search-adv.collapsed, .c-btn.c-btn_style-2, body.search .c-search-header__wrapper .search-content .btn-search-adv, .genres_wrap a.btn-genres, .wpcf7-validation-errors, .text-ui-light.woocommerce-page input[type="text"]:focus, .text-ui-light.woocommerce-page input[type="email"]:focus, .text-ui-light.woocommerce-page input[type="search"]:focus, .text-ui-light.woocommerce-page input[type="url"]:focus, .text-ui-light.woocommerce-page input[type="password"]:focus, .text-ui-light.woocommerce-page input[type="tel"]:focus, .text-ui-light.woocommerce-page .input-text:focus, .text-ui-light.woocommerce-page input[type="text"]:active, .text-ui-light.woocommerce-page input[type="email"]:active, .text-ui-light.woocommerce-page input[type="search"]:active, .text-ui-light.woocommerce-page input[type="url"]:active, .text-ui-light.woocommerce-page input[type="password"]:active, .text-ui-light.woocommerce-page input[type="tel"]:active, .text-ui-light.woocommerce-page .input-text:active, .text-ui-light.woocommerce-page input[type="text"]:hover, .text-ui-light.woocommerce-page input[type="email"]:hover, .text-ui-light.woocommerce-page input[type="search"]:hover, .text-ui-light.woocommerce-page input[type="url"]:hover, .text-ui-light.woocommerce-page input[type="password"]:hover, .text-ui-light.woocommerce-page input[type="tel"]:hover, .text-ui-light.woocommerce-page .input-text:hover, .text-ui-light.woocommerce-page select.orderby:hover  { border-color: #000000 ;}.site-header .c-sub-header-nav .c-sub-nav_wrap .sub-nav_content .sub-nav_list > li.menu-item-has-children > ul.sub-menu, .site-header .c-sub-header-nav .c-sub-nav_wrap .c-modal_item .c-user_item .c-user_menu { border-bottom-color: #000000 ;}.widget.widget_tag_cloud .tag-cloud-link:hover, body.page .c-page-content .c-page .c-page__content .page-content-listing .page-listing-item .page-item-detail .item-summary .list-chapter .chapter-item .chapter:hover, .popular-slider .slider__container .slider__item .slider__content .slider__content_item .chapter-item .chapter a:hover, .widget.c-popular .popular-item-wrap .popular-content .chapter-item .chapter:hover, .site-footer .top-footer .wrap_social_account ul.social_account__item li a, .site-content .main-col .item-tags ul li a:hover, .popular-slider .slider__container .slick-arrow:hover, .widget.background.widget_tag_cloud .tag-cloud-link:hover, .wp-pagenavi a:hover, body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-meta .latest-chap .chapter:hover, .go-to-top:hover, .widget.c-popular .widget-view-more, body.search .c-search-header__wrapper .search-content .search-form .search-submit, body.reading-manga .entry-header .select-pagination .nav-links .nav-next a:not(:hover), body.reading-manga .c-select-bottom .select-pagination .nav-links .nav-next a:not(:hover), body.reading-manga .entry-header .entry-header_wrap .action-icon ul li:hover a, body.reading-manga .c-select-bottom .entry-header_wrap .action-icon ul li:hover a, .widget.c-released .released-search form [type="submit"], body.manga-page .profile-manga .tab-summary .loader-inner > div, .wpcf7-submit, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce .woocommerce-cart-form .cart button.button, .woocommerce .cart input.button:not(:hover), #adult_modal .modal-footer .btn.btn-primary:not(:hover), body.reading-manga .entry-header .select-pagination .nav-links > * a, body.reading-manga .c-select-bottom .select-pagination .nav-links > * a, .settings-page .list-chapter .chapter-item .chapter:hover, body.modal-open .modal .modal-content .modal-body .login .submit .wp-submit:not(:hover), .settings-page .tabs-content-wrap .my_account_orders a.button.view, .main-bg, #madara-comments.comments-area #respond.comment-respond .comment-form .form-submit #submit, body.search .c-search-header__wrapper .search-content .btn-search-adv { background-color: #000000 ;}:root{ --madara-main-color: #000000}body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-meta .latest-chap .chapter:hover a, .wp-pagenavi a:hover{color:#FFF !important}.item-thumb .quick-chapter-link{background: #000000;}            
            .page-content-listing.single-page li.wp-manga-chapter.unread a{color:#000000}a:not(.btn-link):hover, .c-breadcrumb .breadcrumb li a:hover, .tab-wrap .c-nav-tabs ul.c-tabs-content li.active a, .tab-wrap .c-nav-tabs ul.c-tabs-content li:hover a, .c-blog-post .entry-header .entry-meta .post-on .posted-on a:hover, .c-blog-post .entry-header .entry-meta .post-on .c-blog__date .post-category a:hover, body.manga-page .content-readmore:hover, body.text-ui-light.manga-page .content-readmore:hover, body.manga-page .chapter-readmore:hover, body.page .c-page-content .c-page .c-page__content .page-content-listing .page-listing-item .page-item-detail .item-summary .list-chapter .chapter-item .vol a:hover, .site-header .main-navigation.style-1 .search-navigation .search-navigation__wrap .link-adv-search a:hover, .woocommerce ul.products li.product h2:hover, .woocommerce .c-woo-breadcrumb a:hover, .genres_wrap .genres__collapse .genres ul li a:hover, .genres_wrap .genres__collapse .genres ul li a:hover:before ,.widget.c-released .released-item-wrap ul.list-released li a:hover,body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-summary .post-content .post-content_item .summary-content:not(.release-year) a:hover, body.search.search-results .search-wrap .tab-content-wrap .c-tabs-item .c-tabs-item__content .tab-summary .post-content .post-content_item .summary-content.release-year a:hover{ color: #dd3333;}.tab-wrap .c-nav-tabs ul.c-tabs-content li.active a:after, .tab-wrap .c-nav-tabs ul.c-tabs-content li:hover a:after, { background: #dd3333;}.meta-item.rating .rating_current, .meta-item.rating .rating_current_half, body.manga-page .profile-manga .tab-summary .post-rating i.ion-ios-star, body.manga-page .profile-manga .tab-summary .post-rating i.ion-ios-star.rating_current, body.manga-page .profile-manga .tab-summary .post-rating i.ion-ios-star-half, body.manga-page .profile-manga .tab-summary .post-rating .user-rating i.ion-ios-star, body.manga-page .profile-manga .tab-summary .post-rating .post-total-rating i.ion-ios-star, body.manga-page .profile-manga .tab-summary .post-rating .post-total-rating i.ion-ios-star.rating_current, body.manga-page .profile-manga .tab-summary .post-rating .user-rating i.ion-ios-star, body.manga-page .profile-manga .tab-summary .post-rating .user-rating i.ion-ios-star.rating_current, .woocommerce .star-rating, .woocommerce .star-rating::before,
body.manga-page .profile-manga .tab-summary .post-rating .post-total-rating i.ion-ios-star-half { color: #dd3333 ;}#pageloader .loader-inner.ball-pulse > div, #pageloader .loader-inner.ball-pulse-sync > div, #pageloader .loader-inner.ball-beat > div, #pageloader .loader-inner.ball-grid-pulse > div, #pageloader .loader-inner.ball-grid-beat > div, #pageloader .loader-inner.ball-pulse-rise>div, #pageloader .loader-inner.ball-rotate>div, #pageloader .loader-inner.ball-rotate>div:after, #pageloader .loader-inner.ball-rotate>div:before, #pageloader .loader-inner.cube-transition>div, #pageloader .loader-inner.ball-zig-zag>div, #pageloader .loader-inner.ball-zig-zag-deflect>div, #pageloader .loader-inner.line-scale-party>div, #pageloader .loader-inner.line-scale-pulse-out-rapid>div, #pageloader .loader-inner.line-scale-pulse-out>div, #pageloader .loader-inner.line-scale>div, #pageloader .loader-inner.line-spin-fade-loader>div, #pageloader .loader-inner.ball-scale>div, #pageloader .loader-inner.ball-scale-multiple>div, #pageloader .loader-inner.ball-spin-fade-loader>div, #pageloader .loader-inner.square-spin>div {background-color: #ffffff}#pageloader .loader-inner.ball-clip-rotate > div {border: 2px solid #ffffff; border-bottom-color: transparent;}#pageloader .loader-inner.ball-scale-ripple>div, #pageloader .loader-inner.ball-scale-ripple-multiple>div {border: 2px solid #ffffff;}#pageloader .loader-inner.ball-clip-rotate-pulse>div:first-child {background: #ffffff;}#pageloader .loader-inner.ball-clip-rotate-pulse>div:last-child {border-color: #ffffff transparent;}#pageloader .loader-inner.ball-clip-rotate-multiple>div {border: 2px solid #ffffff; border-bottom-color: transparent; border-top-color: transparent;}#pageloader .loader-inner.triangle-skew-spin>div { border-left: 20px solid transparent; border-right: 20px solid transparent; border-bottom: 20px solid #ffffff;}#pageloader .loader-inner.ball-triangle-path>div {border: 1px solid #ffffff;}#pageloader .loader-inner.semi-circle-spin>div {background-image: linear-gradient(transparent 0,transparent 70%, #ffffff 30%, #ffffff 100%);}
			#pageloader.spinners{
				position:fixed;
				top:0;
				left:0;
				width:100%;
				height:100%;
				z-index:99999;
				background:#ef4546
			}
		
			p.madara-unyson{
				color: #FF0000;
			}
		
			.table.table-hover.list-bookmark tr:last-child td{
				text-align: center;
			}
		#adminmenu .wp-submenu li.current { display: none !important;}.show_tgmpa_version{ float: right; padding: 0em 1.5em 0.5em 0; }.tgmpa > h2{ font-size: 23px; font-weight: 400; line-height: 29px; margin: 0; padding: 9px 15px 4px 0;}.update-php{ width: 100%; height: 98%; min-height: 850px; padding-top: 1px; }@media only screen and (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
				/* Retina Logo */
				.site-header .c-header__top .wrap_branding a {background:url(https://lectormangaa.com/wp-content/uploads/2017/10/Liceria-Co.-3.png) no-repeat center; background-size:contain; display:block; max-width: 100%}
				.site-header .c-header__top .wrap_branding a img{ opacity:0; visibility:hidden;}
			}.c-blog-post .entry-content .entry-content_wrap .read-container img.alignleft { margin: 10px 30px 10px 0 !important; } .c-blog-post .entry-content .entry-content_wrap .read-container img.alignright { margin: 10px 0px 10px 30px !important; } .read-container i.fas.fa-spinner.fa-spin{ font-size: 31px; color: #888; }.c-blog-post .entry-content .entry-content_wrap .read-container img{ cursor : pointer; }.choose-avatar .loading-overlay {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-color: rgba(255, 255, 255, 0.72);
			z-index: 1;
			display: none;
		}

		.choose-avatar .loading-overlay i.fas.fa-spinner {
			font-size: 40px;
			color: #ec3348;
		}

		.choose-avatar .loading-overlay .loading-icon {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
		}

		.choose-avatar.uploading .loading-overlay {
			display: block;
		}.site-header .c-sub-header-nav .entry-header {
			display: none;
			margin-bottom: 15px;
		}

		.site-header .c-sub-header-nav.sticky .entry-header {
			display: block;
		}

		.site-header .c-sub-header-nav.hide-sticky-menu.sticky .c-sub-nav_wrap{
			display:none;
		}
		.site-header .c-sub-header-nav.hide-sticky-menu .entry-header{
			margin-top:15px;
		}
		body.page .c-page-content .c-page .c-page__content .page-content-listing .page-listing-item .page-item-detail .item-summary .list-chapter .chapter-item span.vol.font-meta{display:none}@media (max-width: 480px) {.c-blog-post .entry-content .entry-content_wrap .reading-content{margin-left:-15px;margin-right:-15px}}
        .settings-page table.list-bookmark > tbody tr td > div.mange-name:before {
            content: "Nombre Comic";
          }
          .settings-page table.list-bookmark > tbody tr td > div.action:before {
            content: "Editar";
          }
          .settings-page table.list-bookmark > tbody tr td > div.post-on:before {            
            content: "Hora de actualización";
          }
.archive .footer-ads, .blog .footer-ads, .single-post .footer-ads {
    display: none;
}

.single-post .item-content a{color: #ca383a;}

/* Estilos para el modal de favoritos */
.favorites-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.favorites-modal.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.favorites-modal-container {
    position: relative;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #1a1a1a;
    color: #e5e7eb;
    margin: 0.75rem;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.favorites-modal.open .favorites-modal-container {
    transform: scale(1);
}

.favorites-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #333;
    background-color: #1a1a1a;
}

.favorites-modal-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
}

.favorites-close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s ease;
}

.favorites-close-btn:hover {
    color: #f9fafb;
}

.favorites-close-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.favorites-modal-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.75rem;
}

.favorites-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.favorites-search {
    flex: 1;
    min-width: 200px;
}

.favorites-search-input {
    width: 100%;
    padding: 0.85rem;
    background-color: #1f1f1f;
    color: #f5f5f5;
    border: 1px solid #ff3e3e;
    border-radius: 0.25rem;
    font-size: 0.925rem;
    box-shadow: inset 0 0 0 1px rgba(255, 62, 62, 0.3);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.favorites-search-input:focus {
    outline: none;
    border-color: #ff6b6b;
    background-color: #252525;
    color: #fff;
}

.favorites-bulk-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.favorites-btn {
    padding: 0.6rem 1.25rem;
    background-color: transparent;
    color: #ff3e3e;
    border: 1px solid #ff3e3e;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.925rem;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.favorites-btn:hover {
    background-color: rgba(255, 62, 62, 0.1);
    color: #ff6b6b;
}

.favorites-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.favorite-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #1f1f1f;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.favorite-item:hover {
    background-color: #252525;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.favorite-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-checkbox-input {
    position: absolute;
    opacity: 0;
}

.favorite-checkbox-input + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    background-color: #333;
    border: 2px solid #ff3e3e;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
}

.favorite-checkbox-input:checked + label {
    background-color: #ff3e3e;
}

.favorite-checkbox-input:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.favorite-thumb {
    position: relative;
    min-width: 75px;
    width: 75px;
    height: 106px;
    overflow: hidden;
    border-radius: 0.25rem;
}

.favorite-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-notifications {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3e3e;
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.favorite-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.favorite-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.favorite-title a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.favorite-title a:hover {
    color: #ff3e3e;
}

.favorite-chapter, .favorite-unread {
    font-size: 0.925rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.chapter-label, .unread-label {
    color: #9ca3af;
}

.chapter-link, .unread-link {
    color: #ff3e3e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.chapter-link:hover, .unread-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.page-info {
    padding-left: 0.5rem;
    border-left: 1px solid #333;
}

.favorite-meta {
    margin-top: auto;
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.favorite-actions {
    display: flex;
    align-items: flex-start;
}

.favorite-remove-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-remove-btn:hover {
    color: #ff3e3e;
}

.remove-icon {
    width: 20px;
    height: 20px;
}

.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    gap: 1.5rem;
}

.empty-icon {
    color: #333;
}

.empty-text {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
}

@media (max-width: 640px) {
    .favorites-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .favorite-item {
        flex-wrap: wrap;
    }
    
    .favorite-checkbox {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .favorite-thumb {
        margin-top: 1.5rem;
    }
}



/* Estilos mejorados para los checkboxes */
.favorites-modal .favorite-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 24px;
    margin-right: 12px;
}

/* Estilo base para los inputs de checkbox */
.favorites-modal .favorite-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    z-index: 2;
}

/* Estilo para el label que actúa como el checkbox visual */
.favorites-modal .favorite-checkbox-input + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    background-color: #333;
    border: 2px solid #ff3e3e;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Mostrar marca de verificación cuando está checked */
.favorites-modal .favorite-checkbox-input:checked + label {
    background-color: #ff3e3e;
}

.favorites-modal .favorite-checkbox-input:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Asegurar que el área clickeable sea lo suficientemente grande */
.favorites-modal .favorite-checkbox label {
    position: relative;
    z-index: 1;
}

.favorites-modal .favorite-checkbox-input {
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
}

/* Establecer un estilo de hover para mejorar la UX */
.favorites-modal .favorite-checkbox label:hover {
    background-color: #444;
}


.zs-box-warning {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.zs-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zs-icon {
    fill: #66bb6a; /* verde claro */
    width: 40px;
    height: 40px;
}

.zs-message {
    font-size: 15px;
    line-height: 1.4;
}



