﻿.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.notification-item {
    background: white;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    animation: slideIn 0.3s ease-out;
    transition: all 0.2s;
}

.notification-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateX(-5px);
}

.notification-new-order {
    border-left-color: #28a745;
}

.notification-urgent {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-time {
    font-size: 0.85em;
    color: #6c757d;
    margin-left: 10px;
}

.notification-header .btn-close {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.notification-header .btn-close:hover {
    color: #dc3545;
}

.notification-body {
    color: #495057;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.notification-details {
    color: #6c757d;
    font-size: 0.85em;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .notification-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
