.fps-global-notification {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 999999;
    font-size: 14px; /* Reset to default size */
    line-height: 1.4;
    box-sizing: border-box;
}

.fps-notification-content {
    margin: 0 auto;
    max-width: 1200px;
    padding-right: 40px; /* Make space for the close button */
}

.fps-notification-content p {
    margin: 0;
    font-size: inherit;
}

.fps-notification-content a {
    text-decoration: underline;
}

.fps-notification-dismiss {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.fps-notification-dismiss:hover {
    opacity: 1;
}

/* Adjust for WordPress admin bar */
.admin-bar .fps-global-notification {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .fps-global-notification {
        margin-top: 46px;
    }
    
    .fps-notification-content {
        padding-right: 35px; /* Slightly less padding on mobile */
    }
    
    .fps-notification-dismiss {
        right: 10px;
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
} 