/* =========================================================================================
 * Project: HurkTech.io
 * File: hurktech-theme.css
 * Component: Shared Theme
 *
 * Purpose:
 * Defines common HurkTech.io visual tokens and reusable interface styles.
 *
 * Responsibilities:
 * - Provides shared colors, typography, controls, and layout rules
 * - Maintains consistent presentation across applications
 * - Supplies responsive and accessible interaction states
 *
 * Created: 2026-06-10
 * Last Updated: 2026-06-18
 * ========================================================================================= */
body{
    background:#0f172a !important;
    color:#e2e8f0 !important;
}

.card,
.tool-category-card,
.stats-card,
.dashboard-card,
.panel{
    background:#1e293b !important;
    border:1px solid #334155 !important;
}

table{
    background:#1e293b;
}

th{
    background:#2563eb !important;
    color:white;
}

td{
    border-bottom:1px solid #334155;
}

input,
select,
textarea{
    background:#111827 !important;
    border:1px solid #334155 !important;
    color:#e2e8f0 !important;
}

button,
.nav-button,
.tool-button,
.action-btn{
    background:#2563eb;
}

button:hover,
.nav-button:hover,
.tool-button:hover{
    background:#1d4ed8;
}