/* Import Inter font and apply to the body */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
}

.text-glow {
    /* Simulates a danger light effect for attack indicators */
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
}

.card {
    /* Consistent styling for UI boxes */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    border-radius: 0.75rem;
}

.log-viewer {
    height: 300px;
    overflow-y: scroll;
    font-family: monospace;
    font-size: 0.85rem;
    /* Important for displaying the formatted CSV data columns */
    white-space: pre; 
    padding: 1rem;
    background-color: #1f2937; /* Dark background */
    color: #4ade80; /* Green text */
    border-radius: 0.5rem;
}

/* Custom scrollbar for aesthetics */
.log-viewer::-webkit-scrollbar {
    width: 8px;
}

.log-viewer::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 4px;
}

.log-viewer::-webkit-scrollbar-track {
    background: #374151;
}

/* Style for the home page navigation buttons */
.nav-button {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    border-radius: 0.5rem;
    text-align: center;
    color: white; /* Ensure text is readable */
}
