  /* ===== ESTILOS PARA TARJETAS DE DETALLES ===== */
        
        /* Contenedor principal de la lista */
        .detalles-lista {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 0;
        }
        
        /* Tarjeta completa de noticia */
        .tarjeta-noticia {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .tarjeta-noticia:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        /* Encabezado de noticia */
        .encabezado-noticia {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 1.5rem;
            margin: 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .encabezado-noticia::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .encabezado-noticia:hover::before {
            transform: translateX(100%);
        }
        
        .encabezado-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .encabezado-left {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        
        .icono-noticia {
            background: rgba(255, 255, 255, 0.25);
            padding: 1rem;
            border-radius: 50%;
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .icono-noticia:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: scale(1.1);
        }
        
        .icono-noticia i {
            font-size: 1.5rem;
            color: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .info-noticia h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .info-noticia p {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .btn-restaurar-todos {
            background: rgba(255, 255, 255, 0.95);
            color: #667eea;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }
        
        .btn-restaurar-todos:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            color: #5a67d8;
        }
        
        /* Fila de detalle */
        .fila-detalle {
            background: white;
            border: none;
            border-bottom: 1px solid #f3f4f6;
            border-radius: 0;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .fila-detalle:last-child {
            border-bottom: none;
            border-radius: 0 0 1rem 1rem;
        }
        
        .fila-detalle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .fila-detalle:hover {
            background: #f8fafc;
            transform: none;
        }
        
        .fila-detalle:hover::before {
            transform: scaleY(1);
        }
        
        .fila-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .fila-left {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
            min-width: 0;
        }
        
        .badge-tipo {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 0.375rem 0.875rem;
            border-radius: 9999px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }
        
        .badge-tipo:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }
        
        .id-detalle {
            color: #6b7280;
            font-size: 0.875rem;
            font-family: 'Courier New', monospace;
            font-weight: 600;
            background: #f3f4f6;
            padding: 0.25rem 0.5rem;
            border-radius: 0.375rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .id-detalle:hover {
            background: #e5e7eb;
            color: #374151;
            border-color: #d1d5db;
        }
        
        .contenido-detalle p {
            margin: 0;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .contenido-texto {
            color: #374151;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .contenido-titulo {
            color: #667eea;
            font-size: 1rem;
            font-weight: 700;
        }
        
        .contenido-detalle:hover p {
            color: #1f2937;
        }
        
        .meta-detalle {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #6b7280;
            font-size: 0.8rem;
        }
        
        .meta-detalle span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .meta-detalle i {
            color: #9ca3af;
        }
        
        .acciones-detalle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-restaurar, .btn-eliminar {
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.8rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        .btn-restaurar {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }
        
        .btn-restaurar:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        
        .btn-eliminar {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }
        
        .btn-eliminar:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
        }
        
        /* Espaciado entre tarjetas de noticia */
        .espaciado-tarjetas {
            height: 1rem;
        }