.enlace-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.enlace-table th, .enlace-table td {
    padding: 12px 15px;
    text-align: center;
    transition: all 0.2s ease;
}

.enlace-table th {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.enlace-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.enlace-table tr:hover {
    background-color: #f1f5fd;
}

.enlace-table td {
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.enlace-ver-btn {
    padding: 3px 16px;
    background-color: #e0f7fa;
    color: white;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enlace-ver-btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.enlace-reportar {
    color: #e74c3c;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.enlace-reportar:hover {
    color: #c0392b;
    text-decoration: underline;
}

.enlace-agregar {
    margin: 15px 0;
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.enlace-agregar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2980b9, #1a252f);
}

/* Efectos adicionales para la tabla */
.enlace-table thead {
    position: sticky;
    top: 0;
}