.search__form {
    display: flex;
    align-items: center;
    gap: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    padding: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.25rem;
}
h2 {
    font-size: 1.75rem;
}
h3 {
    font-size: 1.375rem;
}
h4 {
    font-size: 1.125rem;
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1em;
    color: #444;
}

small {
    font-size: 0.875rem;
    color: #777;
}

strong {
    font-weight: 700;
    color: #1a1a1a;
}

em {
    font-style: italic;
}

blockquote {
    margin: 1em 0;
    padding: 12px 20px;
    border-left: 4px solid #006fa4;
    background-color: #f4f9fc;
    color: #444;
    font-style: italic;
}

code {
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 0.9em;
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

pre {
    margin: 1em 0;
    padding: 16px;
    background-color: #1e1e1e;
    color: #d4d4d4;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2em 0;
}

ul,
ol {
    margin: 0 0 1em 1.5em;
    color: #444;
}

li {
    margin-bottom: 0.35em;
}

a {
    color: #006fa4;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

a:hover {
    color: #005580;
}

a:active {
    color: #004466;
}

a:focus-visible {
    outline: 2px solid #006fa4;
    outline-offset: 2px;
    border-radius: 2px;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    background-color: #006fa4;
    border: 2px solid #006fa4;
    border-radius: 6px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.1s ease;
    user-select: none;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #005580;
    border-color: #005580;
    box-shadow: 0 2px 8px rgba(0, 111, 164, 0.3);
}

button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    background-color: #004466;
    border-color: #004466;
    transform: translateY(1px);
    box-shadow: none;
}

button:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="button"]:focus-visible {
    outline: 2px solid #006fa4;
    outline-offset: 2px;
}

button:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled {
    background-color: #a0c4d8;
    border-color: #a0c4d8;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    appearance: none;
}

input:hover,
textarea:hover,
select:hover {
    border-color: #999;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #006fa4;
    box-shadow: 0 0 0 3px rgba(0, 111, 164, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
}

fieldset {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 1.5em;
}

legend {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

th,
td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    font-weight: 700;
    color: #1a1a1a;
    background-color: #f8f8f8;
}

tr:hover {
    background-color: #f4f9fc;
}

.panel-navigation {
    padding: 10px;
    background: #f8f8f8;
    border: #e0e0e0 1px solid;
}

.g_highlight_over a,
.g_highlight_lock a {
    color: #fff !important;
}

br {
    display: none;
}

.text-nowrap td {
    word-break: break-all;
    word-wrap: break-word;
    white-space: break-spaces;
}
