
        /* Estilos específicos para la página de convenios */
        .filters-section {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .filter-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        
        .search-input-group {
            position: relative;
        }
        
        .search-input-group input {
            padding-right: 45px;
            border-radius: 50px;
            border: 1px solid #ddd;
        }
        
        .search-input-group button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--accent);
        }
        
        .filter-select {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            border: 1px solid #ddd;
            background: white;
            font-size: 0.9rem;
        }
        
        .btn-clear {
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        
        .btn-clear:hover {
            background: var(--accent);
            color: white;
        }
        
        .result-stats {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .classified-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .classified-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,84,145,0.1);
            border-color: var(--accent);
        }
        
        .classified-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }
        
        .classified-category {
            display: inline-block;
            background: rgba(233,83,9,0.1);
            color: var(--accent);
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .classified-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .classified-tag {
            background: #f0f0f0;
            color: var(--text-muted);
            padding: 0.2rem 0.7rem;
            border-radius: 50px;
            font-size: 0.7rem;
        }
        
        .classified-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .classified-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        .classified-info-item i {
            width: 20px;
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .btn-details {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .btn-details:hover {
            background: var(--accent);
            transform: translateX(5px);
        }
        
        .pagination {
            margin-top: 2rem;
            justify-content: center;
        }
        
        .page-link {
            color: var(--primary);
            border: none;
            margin: 0 3px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-link:hover {
            background: var(--accent);
            color: white;
        }
        
        .page-item.active .page-link {
            background: var(--primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .filters-section {
                padding: 1rem;
            }
            
            .classified-card {
                padding: 1rem;
            }
        }
		
		/* ===== MODAL ESTILO INSTITUCIONAL ===== */
		.modal-content {
			border: none;
			border-radius: 20px;
			box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
			overflow: hidden;
		}

		.modal-header {
			background: linear-gradient(135deg, var(--primary) 0%, #003d6b 100%);
			border-bottom: 3px solid var(--accent);
			padding: 1.25rem 1.5rem;
		}

		.modal-header .modal-title {
			color: white;
			font-family: 'Montserrat', sans-serif;
			font-weight: 600;
			font-size: 1.25rem;
			display: flex;
			align-items: center;
		}

		.modal-header .btn-close {
			background: rgba(255, 255, 255, 0.2);
			border-radius: 50%;
			padding: 0.5rem;
			opacity: 1;
			transition: all 0.2s ease;
		}

		.modal-header .btn-close:hover {
			background: var(--accent);
			transform: rotate(90deg);
		}

		.modal-body {
			padding: 1.5rem;
			background: #ffffff;
		}

		.modal-footer {
			background: #f8f9fa;
			border-top: 1px solid #e9ecef;
			padding: 1rem 1.5rem;
		}

		.btn-modal-close {
			background: transparent;
			border: 2px solid var(--accent);
			color: var(--accent);
			border-radius: 50px;
			padding: 0.5rem 1.5rem;
			font-weight: 600;
			font-size: 0.9rem;
			transition: all 0.3s ease;
		}

		.btn-modal-close:hover {
			background: var(--accent);
			color: white;
			transform: translateX(-5px);
		}

		/* Estilos para el contenido dentro del modal */
		.detail-item {
			margin-bottom: 1.25rem;
			padding-bottom: 0.75rem;
			border-bottom: 1px solid #f0f0f0;
		}

		.detail-item:last-child {
			border-bottom: none;
			margin-bottom: 0;
			padding-bottom: 0;
		}

		.detail-label {
			font-family: 'Montserrat', sans-serif;
			font-weight: 600;
			font-size: 0.8rem;
			color: var(--primary);
			text-transform: uppercase;
			letter-spacing: 0.5px;
			margin-bottom: 0.5rem;
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.detail-label i {
			color: var(--accent);
			font-size: 0.9rem;
			width: 20px;
		}

		.detail-value {
			font-family: 'Open Sans', sans-serif;
			font-size: 1rem;
			color: var(--text-dark);
			line-height: 1.5;
			margin-left: 28px;
		}

		.detail-value strong {
			color: var(--primary);
			font-weight: 600;
		}

		.detail-badge.oferta {
			background: rgba(0, 84, 145, 0.1);
			color: var(--primary);
		}

		.detail-badge.demanda {
			background: rgba(233, 83, 9, 0.1);
			color: var(--accent);
		}

		/* Animación del modal */
		.modal.fade .modal-dialog {
			transform: scale(0.95);
			transition: transform 0.2s ease-out;
		}

		.modal.show .modal-dialog {
			transform: scale(1);
		}

		/* Responsive */
		@media (max-width: 576px) {
			.modal-body {
				padding: 1rem;
			}
			
			.detail-value {
				font-size: 0.9rem;
				margin-left: 24px;
			}
			
			.detail-label {
				font-size: 0.75rem;
			}
		}