@import url('./index.css');

.fondoModal {
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3000;
    display: none;
    transition: opacity 0.3s ease;
}

.fondoModal .modal-content {
    background-color: var(--sider-color);
    border: 1px solid white;
}

.fondoModal .custom-color-title {
    color: white;
}

.fondoModal .modal-footer .buttonCancelar {
    background-color: var(--primary-color);
    color: var(--sider-color);
    font-style: bold;
}

.fondoModal .modal-footer .buttonAceptar {
    background-color: var(--primary-color);
    color: var(--sider-color);
    font-style: bold;
}

.fondoModal.show {
    opacity: 1;
}

.centrado {
    justify-content: center;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.toast-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1055;
    display: none;
    justify-content: center;
}

.toast {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    background-color: rgba(209, 154, 255);
}

.toast.show{
    animation: slideDown 1s ease-out;
}


.toast-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(71, 71, 71);
    padding: 10px;
}