
/* =========================================
   1. HEADERIN RUNKO (Yleiset asetukset)
   ========================================= */
.md-header {
    position: sticky !important;
    top: 0;
    height: auto;
    min-height: 4rem;
    z-index: 100;
}

.md-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 0.5rem 0;
}

/* =========================================
   2. LOGO
   ========================================= */
.md-logo img {
    display: block;
    height: auto !important;
    width: auto;
    max-height: 6.0rem !important;

    /* Valkoiset pyöristetyt reunat */
    background-color: white;       /* Varmistaa taustan, jos logo on läpinäkyvä */
    border: 1px solid white;       /* Reunan paksuus */
    border-radius: 12px;           /* Pyöristyksen voimakkuus */
    padding: 2px;                  /* Tyhjää tilaa kuvan ja reunan väliin */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Kevyt varjo tuomaan syvyyttä */
}

/* =========================================
   3. NAVIGAATIO (Välilehdet nimen viereen)
   ========================================= */
.md-tabs {
    display: flex;
    background-color: transparent !important;
    margin-left: 1rem;
    margin-top: 0;
}

.md-tabs__list {
    margin-bottom: 0;
}

/* =========================================
   4. HAKU JA IKONIT (Oikea reuna)
   ========================================= */
.md-header__items--shared {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0.3rem;
}

/* =========================================
   5. SISÄLTÖ JA KOMPONENTIT (Taulukot & Kuvat)
   ========================================= */
.md-typeset table {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.md-typeset table th {
    background-color: var(--md-primary-color);
    color: white;
}

img[alt="RepoStage Hero"] {
    display: block;
    margin: 1rem auto;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
}

/* Pakotetaan taulukon otsikot mustaksi */
.md-typeset table thead th {
    color: #212121; /* Musta väri */
}

/* --- RS INFRA TICKER --- */

/* Nauhan säiliö */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #000000; /* Täysin musta tausta */
    color: #00ff41;           /* "Matrix" vihreä */
    padding: 8px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    border-top: 1px solid #333;
    position: relative;
    z-index: 10;
}

/* Nauhan liikkuva osa */
.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 45s linear infinite;
    will-change: transform; /* Optimoi animaation suorituskyvyn */
}

/* Yksittäiset viestit nauhassa */
.ticker-item {
    display: inline-block;
    padding: 0 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pysäytys hiirellä */
.ticker-wrap:hover .ticker {
    animation-play-state: paused;
    cursor: default;
}

/* Animaation määrittely */
@keyframes ticker-scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}



