/* ============================================================
   serverlog-web
   Estilos generales
   ============================================================ */

:root {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #17211c;
    background: #eef2ef;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;

    background: #eef2ef;
    color: #17211c;
}


/* ============================================================
   Layout
   ============================================================ */

.page-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

main {
    padding: 40px 0 80px;
}


/* ============================================================
   Typography
   ============================================================ */

h1,
h2,
h3 {
    color: #17211c;
}

h1 {
    margin: 0 0 8px;

    font-size: 32px;
    line-height: 1.2;
}

h2 {
    margin: 0 0 20px;

    font-size: 22px;
    line-height: 1.3;
}

h3 {
    margin: 0;

    font-size: 19px;
    line-height: 1.3;
}

p {
    line-height: 1.55;
}


/* ============================================================
   Page header
   ============================================================ */

.page-header {
    margin-bottom: 32px;
}

.page-header p {
    margin: 0;

    color: #52605a;
}


/* ============================================================
   Panels
   ============================================================ */

.panel {
    margin-bottom: 32px;
    padding: 24px;

    background: #ffffff;

    border: 1px solid #dce3df;
    border-radius: 10px;
}


/* ============================================================
   Forms
   ============================================================ */

.form-field label {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 8px 10px;

    background: #ffffff;
    color: #17211c;

    border: 1px solid #cfd8d3;
    border-radius: 6px;

    font: inherit;
}

.form-field input,
.form-field select {
    min-height: 42px;
}

.form-field textarea {
    min-height: 120px;

    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid #829c91;
    outline-offset: 1px;
}


/* ============================================================
   Buttons
   ============================================================ */

button,
.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 16px;

    background: #173f31;
    color: #ffffff;

    border: 0;
    border-radius: 6px;

    font: inherit;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;
}

.button--secondary {
    background: #66736d;
}


/* ============================================================
   Badges
   ============================================================ */

.badge {
    display: inline-block;

    padding: 3px 8px;

    background: #e3e8e5;

    border-radius: 999px;

    font-size: 12px;
    line-height: 1.4;
}

.badge--verified {
    background: #dcebdd;
}

.badge--unverified {
    background: #f4e5d6;
}


/* ============================================================
   Tables
   ============================================================ */

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;

    border-collapse: collapse;

    font-size: 14px;
}

th,
td {
    padding: 12px 10px;

    border-bottom: 1px solid #e4e9e6;

    text-align: left;
    vertical-align: top;
}

th {
    background: #f4f7f5;

    white-space: nowrap;
}

td {
    line-height: 1.45;
}

.nowrap {
    white-space: nowrap;
}


/* ============================================================
   Common states
   ============================================================ */

.no-results {
    margin: 0;
    padding: 20px;

    background: #f6f8f7;

    border-radius: 6px;
}

.muted {
    color: #68756f;
}


/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 700px) {

    .page-container {
        width: calc(100% - 24px);
    }

    main {
        padding-top: 24px;
    }

    .panel {
        padding: 16px;
    }

}


/* ============================================================
   Home
   ============================================================ */

.home-hero {
    max-width: 760px;
    margin: 80px auto 0;
    padding: 48px;

    background: #ffffff;

    border: 1px solid #dce3df;
    border-radius: 12px;
}

.home-hero__eyebrow {
    margin: 0 0 10px;

    color: #68756f;

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero__description {
    max-width: 620px;

    margin: 0;

    color: #52605a;

    font-size: 18px;
    line-height: 1.6;
}

.home-hero__actions {
    margin-top: 28px;
}

.home-hero__version {
    margin: 28px 0 0;

    color: #7a8580;

    font-size: 13px;
}

.home-hero__logo {
    display: block;
    width: min(100%, 240px);
    height: auto;
    margin: 0 auto 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}