/* System Banner for Persistent Notifications */
/*#system-banner-container {
    position: fixed;
    top: 60px;*/
    /* Below navbar */
    /*left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.system-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #5568d3;
    animation: slideDown 0.5s ease-out;
}*/

.system-banner.priority-high {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-bottom-color: #e04858;
}

.system-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.system-banner .banner-icon {
    font-size: 24px;
    margin-right: 15px;
}

.system-banner .banner-text {
    flex: 1;
}

.system-banner .banner-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.system-banner .banner-message {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

.system-banner .banner-expiry {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adjust main content when banner is present */
body.has-system-banner .main-wrapper {
    padding-top: 60px;
    /* Extra space for banner */
}