/* Osiris Agent - Medaway Enhancement Styles */

.osiris-health-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.osiris-health-alert .alert-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.osiris-health-alert .alert-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.osiris-health-alert .alert-content button {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.osiris-health-alert .alert-content button:hover {
    background: rgba(255,255,255,0.3);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Osiris performance indicator */
.osiris-performance-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
}

.osiris-performance-indicator .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.osiris-performance-indicator .status.warning {
    background: #f59e0b;
}

.osiris-performance-indicator .status.critical {
    background: #ef4444;
}

/* Osiris enhancement notification */
.osiris-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9997;
    font-size: 13px;
    animation: fadeIn 0.3s ease-out;
    max-width: 250px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .osiris-health-alert {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .osiris-performance-indicator {
        bottom: 10px;
        left: 10px;
    }
    
    .osiris-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
