/*
 * OwO Farm Bot Stable
 * Copyright (C) 2024 Mido
 * This software is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
 * For more information, see README.md and LICENSE
 */

.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    z-index: 9999;
}

.notification {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 15px; /* Köşeleri yuvarlak */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 300px;
    text-align: center;
}

.notification.show {
    opacity: 1;
}

.notification.error {
    background-color: #dc3545;
}

.notification.warning {
    background-color: #b2651b;
}

.notification.info {
    background-color: #17a2b8;
}
