﻿/* ===========================================================
   ✅ TOAST MESSAGES (Success, Error, Delete)
=========================================================== */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 220px;
    padding: 12px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
    z-index: 9999;
}

    .toast-message.show {
        opacity: 1;
        transform: translateY(0);
    }

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

.toast-warning {
    background-color: #ffc107;
    color: #000;
}

.toast-delete {
    background-color: #fd7e14;
}

.tick {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

    .tick::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 1px;
        width: 6px;
        height: 12px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg);
    }
