
/* FLOATING STATUS (TOAST) */
.message-toast{
    position:fixed;
    bottom:1.5rem;
    right:1.5rem;
    max-width:360px;
    padding:1rem 1.2rem;
    border-radius:14px;
    font-weight:600;
    display:flex;
    gap:.8rem;
    align-items:flex-start;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
    z-index:1000;
    animation:slideIn .4s ease-out;
}

/* STATES */
.message-toast{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.toast-title{
    font-size:1rem;
    font-weight:700;
    margin-bottom:.25rem;
}

.toast-message{
    font-size:.9rem;
    font-weight:500;
    opacity:.85;
}

.message-toast.open{
    background:#e6f9f4;
    color:#00695c;
    border-left:6px solid #00ccbc;
}

.message-toast.closed{
    background:#fff3cd;
    color:#856404;
    border-left:6px solid #ff9800;
}

.message-toast.unavailable{
    background:#f4f4f4;
    color:#555;
    border-left:6px solid #9e9e9e;
}

.message-toast.vacation{
    background:#fdecea;
    color:#8a1f17;
    border-left:6px solid #e53935;
}