#wp-admin-bar-cf-invalidator .ab-item {
    background: #23282d;
    color: #fff !important;
}

#wp-admin-bar-cf-invalidator .ab-item:hover {
    background: #32373c !important;
}

.cf-notification {
    position: fixed;
    top: 32px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 999999;
    max-width: 400px;
    animation: cf-slide-in 0.3s ease-out;
}

.cf-notification.success {
    background: #46b450;
    color: #fff;
    border-left: 4px solid #2e7d32;
}

.cf-notification.error {
    background: #dc3232;
    color: #fff;
    border-left: 4px solid #a00;
}

.cf-notification.info {
    background: #00a0d2;
    color: #fff;
    border-left: 4px solid #0073aa;
}

.cf-notification .cf-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.cf-notification .cf-message {
    font-size: 13px;
    line-height: 1.4;
}

.cf-notification .cf-details {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
}

@keyframes cf-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cf-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: cf-spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes cf-spin {
    to {
        transform: rotate(360deg);
    }
} 