/* Toast sucess */
.toast-top-blue {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #333;
    border: 2px solid #0d6efd;
    border-radius: 10px;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    opacity: 0;
    transition: all 0.6s ease;
}

/* === Quando aparece === */
.toast-top-blue.show {
    top: 20px;
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 1rem;
}

.checkmark-blue {
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(13, 110, 253, 0.35);
}

.toast-message {
    color: #000;
}

@media (max-width: 768px) {
    .toast-top-blue {
        width: 90%;
        padding: 0.8rem 1rem;
    }
}

/* Fim Toast sucess */

/*Toast Warning */
.toast-top-yellow {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff3cd;
    color: #856404;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
    opacity: 0;
    transition: all 0.6s ease;
}

.toast-top-yellow.show {
    top: 20px;
    opacity: 1;
}

.checkmark-yellow {
    background-color: #ffc107;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(255, 193, 7, 0.35);
}

/* Fim Toast Warning */

/*  Toast error */
.toast-top-red {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
    opacity: 0;
    transition: all 0.6s ease;
}

.toast-top-red.show {
    top: 20px;
    opacity: 1;
}

.checkmark-red {
    background-color: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(220, 53, 69, 0.35);
}

/* Fim Toast error */