/**
 * Estilos para el enlace de nueva obra en el modal de repertorio
 */

/* Enlace de nueva obra con estilo gris medio */
#enlaceNuevaObra {
    color: #6c757d !important;
    font-size: 0.9em;
    font-weight: 500;
    margin-left: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Hover effect para el enlace */
#enlaceNuevaObra:hover {
    color: #495057 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Focus effect para accesibilidad */
#enlaceNuevaObra:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Estilo activo al hacer clic */
#enlaceNuevaObra:active {
    color: #343a40 !important;
    transform: translateY(0);
}

/* Responsive: en pantallas pequeñas, hacer el enlace más visible */
@media (max-width: 768px) {
    #enlaceNuevaObra {
        font-size: 1em;
        margin-left: 10px;
        display: inline-block;
        margin-top: 5px;
    }
}

/* Estilo para el modal de obra */
#modalObra .modal-dialog {
    max-width: 500px;
}

#modalObra .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

#modalObra .modal-title {
    color: #495057;
    font-weight: 600;
}

#modalObra .form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

/* Animación suave para el modal */
#modalObra.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

#modalObra.show .modal-dialog {
    transform: none;
}
