﻿:root {
    --panel: #ffffff;
    --line: #e2e8f0;
}

.header-search input,
.header-search button,
.header-search select,
.header-search optgroup,
.header-search textarea {
    margin: initial;
    font-size: 13.3333px;
    line-height: initial;
}

#sosSearchButton {
    font-family: Arial, Helvetica, sans-serif;
}

input[type="text" i] {
    padding-block: 1px;
    padding-inline: 2px;
}

header *,
header *::before,
header *::after {
    box-sizing: content-box;
}

th {
    text-align: center;
}

div {
    display: block;
    unicode-bidi: isolate;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-family: inherit;
}

body {
    margin: 0;
    font-family: inherit; /* Reset to default font family */
    font-size: inherit; /* Reset to default font size */
    font-weight: inherit; /* Reset to default font weight */
    line-height: inherit; /* Reset to default line height */
    color: inherit; /* Reset to default text color */
    text-align: inherit; /* Reset to default text alignment */
    background-color: #FAFAFA; /* Reset to default background color */
    -webkit-text-size-adjust: none; /* Reset text size adjustment */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight color */
    max-width: 100%;
}

hr {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    opacity: inherit;
}

b, strong {
    font-weight: bold;
}

h2 {
    font-size: 1.5em;
}

p {
    margin-block-start: 1em;
}

ol {
    margin-top: 1em;
    margin-bottom: 1em;
}

/* ===== Primary (radiant blue brand) ===== */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff !important;
    border: 1px solid #1e3a8a;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.35rem .5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        border-color: #2563eb;
        box-shadow: 0 6px 14px rgba(37, 99, 235, 0.4);
        transform: translateY(-2px);
    }

/* Secondary (neutral gradient) */
.btn-secondary {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    color: #0f172a !important;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.35rem .5rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

    .btn-secondary:hover {
        background: linear-gradient(135deg, #e5e7eb, #dfe3e8);
        border-color: #bac3cc;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.10);
        transform: translateY(-2px);
    }

.gov-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    max-width: 720px;
}