/* Notification Bar Styles */
#cpl-notification-bar {
    background: linear-gradient(175deg, blue 0%, darkblue 100%);
    color: white;
    padding: 15px 0;
    border-bottom: 3px solid darkblue;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cpl-notification-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#cpl-notification-bar h3 {
    margin: 0 0 5px 0;
    font-size: 1.4em;
    color: white;
    text-align: center;
}

#cpl-notification-bar h4 {
    margin: 10px 0 5px 0;
    font-size: 1.1em;
    color: #e0e0ff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

.cpl-notification-group {
    margin-bottom: 10px;
}

.cpl-notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cpl-notification-item:hover {
    background: rgba(255,255,255,0.2);
}

.cpl-notification-link {
    color: white;
    text-decoration: none;
    flex-grow: 1;
    padding: 5px 0;
}

.cpl-notification-link:hover {
    color: #e0e0ff;
    text-decoration: underline;
}

.cpl-notification-dismiss {
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 5px;
    margin-left: 10px;
}

.cpl-notification-dismiss:hover {
    color: #ff5252;
    transform: scale(1.1);
}

.cpl-notification-actions {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cpl-notification-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cpl-notification-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .cpl-notification-container {
        padding: 0 10px;
    }
    
    .cpl-notification-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cpl-notification-dismiss {
        align-self: flex-end;
        margin-top: 5px;
    }
}