
.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #607bf7;
}

.toast-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.toast-title {
    font-size: 1.2em;
    border-bottom: 2px solid #6c85e7;
    color: #d8dbff;
}

.toast-sender {
    font-size: 1.0em;
    color: #b1bfff;
}

.toast-content {
    font-size: 1.0em;
    opacity: 0.8;
    color: white;
}

.notification-toast {
    background: #414149bd;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgb(72 64 222 / 30%);
    border-left: 10px solid #607bf7;
    min-width: 250px;
    max-width: 350px;
    animation: slideIn 0.3s ease;
    cursor: pointer;
    font-family: sans-serif;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

#toast-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
}

.toast-body-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.toast-body {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
}