/**
 * Frontend Styles für das Notification Banner Plugin
 */
.notification-banner-container {
    width: 100%;
    margin: 0;
    background-color: #2fbbff;
}

.notification-banner {
    background-color: #2fbbff;
    padding: 15px 20px;
    position: relative;
    color: #fff;
    max-width: 1311px;
    margin-left: auto;
    margin-right: auto;
}

.notification-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-banner-icon {
    margin-right: 15px;
    font-size: 18px;
}

.notification-banner-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.notification-banner-text {
    flex: 1;
}

.notification-banner-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    display: inline-block;
}

.notification-banner-metadata {
    font-size: 12px;
    margin-top: 3px;
    opacity: 0.9;
    color: #fff;
}

.notification-banner-description {
    margin-top: 8px;
    color: #fff;
}

.notification-banner-description p:last-child {
    margin-bottom: 0;
}

.notification-banner-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #003087;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    margin-left: 20px;
    white-space: nowrap;
    border: 2px solid #003087;
}

.notification-banner-button:hover {
    background-color: #ffffff;
    color: #003087;
    text-decoration: none;
    border-color: #ffffff;
}

.notification-banner-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.notification-banner-close:hover {
    opacity: 1;
}