.toast_resp {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Estilo para mensajes de éxito */
.success-message {
    background-color: #d4edda; /* Verde claro */
    color: #155724; /* Texto verde oscuro */
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
}

/* Estilo para mensajes de error */
.error-message {
    background-color: #f8d7da; /* Rojo claro */
    color: #721c24; /* Texto rojo oscuro */
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    text-align: center;
}
