﻿#toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    width: 300px;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: aquamarine;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #000;
    display: flex;
    align-items: flex-start;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    opacity: 1;
}

.toast-icon {
    margin-right: 10px;
    font-size: 20px;
}

.toast-close {
    border: none;
    background: transparent;
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 16px;
    cursor: pointer;
    color: #000;
}
