

/* Distribuir el formulario en dos columnas */
.form-row {
    display: flex;
    justify-content: space-between;
}

/* Cada grupo de entrada ocupará el 48% del espacio */
.form-group {
    width: 48%;
}

.modify-book-link {

    margin-top: 20px;
}

.modify-book-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.modify-book-link a:hover {
    text-decoration: underline;
}

