/* === Botones y Acciones === */
.btn {
    font-family: 'OpenDyslexic', sans-serif;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, opacity 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    font-family: 'OpenDyslexic', sans-serif;
    background-color: #007bff;
    color: white;
}


.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-warning {
    background-color: #ffc107;
    color: black;
}

.btn-add, .btn-save {
    font-family: 'OpenDyslexic', sans-serif;
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

.btn-add:hover, .btn-save:hover {
    background-color: #218838;
}


.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.btn-form {
    display: flex;
    align-items: center;
    margin: 0;
}

.btn-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.btn-back {
    background-color: #17a2b8;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, opacity 0.3s;
}

.btn-back:hover {
    opacity: 0.8;
}


/* === Botón de Volver === */
.back-button {
    text-align: center;
    margin-top: 20px;
}

.back-button a {
    background-color: #17a2b8;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}
