/* styles.css - NDAA UAS Marketplace */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --primary: #003087;
    --primary-dark: #002266;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f8fafc;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

tr:hover {
    background-color: #f8fafc;
}

/* NDAA Badge */
.ndaa-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: #e8e0b5;
    color: #d4b920;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    th, td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-bg h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}