/* Общие стили для уведомлений */
.notification {
    width: 100%;
    position: fixed;
    top: 60px;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    z-index: 3;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.notification.warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.notification.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.alert-close-btn {
    padding-right: 20px;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
}

.alert-close-btn:hover {
    color: #000;
}