/* ==========================================
   Status Bar - Dark Theme
   ========================================== */

.status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    background: #2d2d30;
    color: #cccccc;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 400px;
}

.status.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.status.success {
    background: #1e3a1e;
    border-color: #2d5d2d;
    color: #73c991;
}

.status.error {
    background: #3c2b23;
    border-color: #5a3a2a;
    color: #f48771;
}

.content-modified-indicator {
    color: #f48771;
    font-size: 20px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .status {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 13px;
        padding: 10px 15px;
    }
}