/* =========================================================
   Internet Time Machine
   Google / Internet Era — 1998
   ========================================================= */


/* ---------------------------------------------------------
   1998 global appearance
   --------------------------------------------------------- */

body.era-1998 {
    font-family: "Times New Roman", Times, serif;

    background: #ffffff;
    color: #000000;
}


/* ---------------------------------------------------------
   Application
   --------------------------------------------------------- */

body.era-1998 #app {
    min-height: 100vh;
}


/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

body.era-1998 #app-header {
    padding: 8px;

    background: #ffffff;
    border-bottom: none;

    text-align: center;
}

body.era-1998 #app-title {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;
    font-weight: bold;

    color: #000000;
}


/* ---------------------------------------------------------
   Main content
   --------------------------------------------------------- */

body.era-1998 #app-content {
    max-width: 760px;

    padding: 10px;
}


/* ---------------------------------------------------------
   Era selector
   --------------------------------------------------------- */

body.era-1998 #era-selector {
    padding: 4px;

    margin-bottom: 10px;

    border-bottom: 1px solid #000000;
}

body.era-1998 #era-selector h2 {
    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}


/* ---------------------------------------------------------
   Era buttons
   --------------------------------------------------------- */

body.era-1998 #era-list {
    gap: 4px;
}

body.era-1998 .era-button {
    padding: 2px 7px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    background: #eeeeee;
    color: #000000;

    border: 1px solid #808080;
    border-radius: 0;
}

body.era-1998 .era-button:hover {
    background: #dddddd;
}

body.era-1998 .era-button.active {
    background: #000080;
    color: #ffffff;

    border-color: #000000;
}


/* ---------------------------------------------------------
   Current era
   --------------------------------------------------------- */

body.era-1998 #current-era {
    margin-bottom: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


/* ---------------------------------------------------------
   Service navigation
   --------------------------------------------------------- */

body.era-1998 #service-navigation {
    margin-bottom: 10px;

    gap: 5px;
}

body.era-1998 .service-button {
    padding: 2px 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    background: #eeeeee;
    color: #000000;

    border: 1px solid #808080;
    border-radius: 0;
}

body.era-1998 .service-button:hover {
    background: #dddddd;
}


/* ---------------------------------------------------------
   Page
   --------------------------------------------------------- */

body.era-1998 #page-container {
    min-height: 250px;

    padding: 15px;

    background: #ffffff;

    border: 1px solid #000000;
    border-radius: 0;
}


/* ---------------------------------------------------------
   Page typography
   --------------------------------------------------------- */

body.era-1998 #page-content h2 {
    margin-bottom: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

body.era-1998 #page-content p {
    font-size: 13px;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

body.era-1998 #app-footer {
    padding: 5px;

    background: #ffffff;

    border-top: 1px solid #000000;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;

    color: #000000;
}


/* ---------------------------------------------------------
   1998 link appearance
   --------------------------------------------------------- */

body.era-1998 a {
    color: #0000ee;
    text-decoration: underline;
}

body.era-1998 a:visited {
    color: #551a8b;
}