/* Custom styles for enhanced intel aesthetic */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0A0B1A;
}

::-webkit-scrollbar-thumb {
    background: #B0B0B0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* Glow effects for high priority items */
.bg-intel-red {
    background-color: #FF3B30;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.bg-intel-yellow {
    background-color: #FFB800;
    box-shadow: 0 0 8px rgba(255, 184, 0, 0.3);
}

.bg-intel-green {
    background-color: #00FF88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
}

/* Enhanced card hover effects */
.bg-intel-navy:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Smooth transitions for all interactive elements */
button, input {
    transition: all 0.2s ease;
}

button:hover {
    transform: scale(1.02);
}

/* Military-style monospace for timestamps */
.font-mono {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Custom focus styles for accessibility */
button:focus, input:focus {
    outline: 2px solid #00FF88;
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .flex-col-mobile {
        flex-direction: column;
    }
    
    .space-x-mobile > * + * {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}