﻿.Boton-type-submit {
    background: linear-gradient(90deg, #28388D, #31A52C); /* Degradado corporativo */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.Boton-type-submit:hover {
    transform: scale(1.03);
    background: linear-gradient(90deg, #1e2c6c, #2c7e1f);
}




.btn-editar,
.btn-eliminar {
    background-color: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.EliminarTarjeta {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
}
.EliminarTarjeta:hover {
    color: #b71c1c;
    transform: scale(1.1);
}

.btn-editar {
    color: #1976d2;
}

.btn-editar:hover {
    color: #0d47a1;
    transform: scale(1.1);
}

.btn-eliminar {
    color: #e53935;
}

.btn-eliminar:hover {
    color: #b71c1c;
    transform: scale(1.1);
}

.boton-accion {
    background-color: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.boton-accion:hover {
    color: #b71c1c;
    transform: scale(1.1);
}