
    /* 1. Fundament - Twój Vintage Brown */
    body {
        font-family: 'Consolas', monospace;
        background: radial-gradient(circle, #4a3728 0%, #2c1e14 100%);
        background-attachment: fixed;
        color: #f4e4bc;
        margin: 0 !important;   /* WYMUSZONE ZERO MARGINESU */
        padding: 0 !important;  /* WYMUSZONE ZERO ODSTĘPU */
        display: flex;
        flex-direction: column;
        min-height: 100vh;
}

    /* 2. Nagłówek z Twoją płytką (Kopia stylu z pobieralni) */
    header {
        text-align: center;
        padding: 10px 0 !important; /* Zredukowany odstęp góra-dół */
    }
    .logo-plate {
        display: inline-block;
        padding: 15px 45px;
        background-color: #4169E1;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.5);
        border: 2px solid #5a7fee;
    }
    .logo-plate h1 {
        margin: 0;
        font-size: 3.5em;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: 12px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }

    /* 3. Kontener Kafli (Dashboard) */
    .dashboard {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        grid-auto-rows: 1fr; /* WYMUSZA RÓWNĄ WYSOKOŚĆ KAFLI W RZĘDZIE */
        gap: 25px;
        max-width: 1000px;
        margin: 20px auto;
        padding: 20px;
        flex-grow: 1;
    }

    /* 4. Styl Pojedynczego Kafla */
    .card {
        background-color: #3d2b1f;
        border: 2px solid #4169E1; /* STAŁA NIEBIESKA RAMKA */
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #f4e4bc;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        
        /* Dodatki dla wyśrodkowania treści w pionie */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .card:hover {
        transform: translateY(-5px);
        background-color: #4a3728;
        border: 2px solid #32CD32; /* ZIELONA RAMKA PRZY NAJECHANIU */
        box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
    }
    .card i {
        font-size: 3em;
        color: #4169E1;
        margin-bottom: 15px;
        display: block;
    }
    .card h2 {
        margin: 10px 0;
        color: #d4a373;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .card p {
        font-size: 0.9em;
        line-height: 1.5;
        opacity: 0.8;
    }

    /* 5. Stopka techniczna */
    footer {
        background-color: rgba(0,0,0,0.2);
        padding: 20px;
        text-align: center;
        font-size: 0.85em;
        color: #8c6a4c;
        border-top: 1px solid #3d2b1f;
    }

/* Pasek techniczny pod logiem */
.header-info {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.info-item {
    display: inline-block;
    margin: 0 20px;
    font-size: 0.9em;
}

.info-label { color: #4169E1; font-weight: bold; margin-right: 5px; }
.info-value { color: #d4a373; font-weight: bold; }

/* Kontener na zegary, aby były obok siebie */
.clocks-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.clocks-container iframe {
    border: 1px solid #4169E1 !important;
    border-radius: 4px;
}

/* STYLE DLA POBIERALNI (Auto-Index) */

/* --- POPRAWKA DLA POBIERALNI SP9RQD --- */
/* 1. Tabela i jej zawartość */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 1000px;
    margin: 0px auto 20px auto; /* ZMIANA: z 20px na 10px (podnosi tabelę) */
    background-color: #d4a373 !important;
    color: #1a110a !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #8c6a4c;
}

/* 2. Nagłówki kolumn - ŚCISŁE CENTROWANIE W PIONIE */
th {
    background: #8c6a4c !important;
    color: #f4e4bc !important;
    padding: 6px 12px !important; /* Symetryczne dopełnienie lewo-prawo i góra-dół */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;             /* Zmniejsza wysokość wiersza tekstu */
    vertical-align: middle;       /* Wymusza centrowanie w pionie */
    text-align: left;
}

/* Napisy Name, Last Modified, Size jako linki też na złoto */
th a, th a:visited { 
    color: #f4e4bc !important; 
    text-decoration: none; 
}

/* 3. Linki do plików - ROZWIĄZANIE PROBLEMU FIOLETU */
td a, td a:visited { 
    color: #1a110a !important; /* Zawsze czarny/ciemny brąz, nawet po kliknięciu */
    text-decoration: none;
    font-weight: bold;
}

/* 4. Efekt najechania myszą (Hover) */
td a:hover { 
    color: #4169E1 !important; /* Twój RoyalBlue przy najechaniu */
    text-decoration: underline !important;
}

tr:hover { 
    background-color: #c49463 !important; /* Podświetlenie całego wiersza */
}

/* 5. Ikony plików - ODSUNIĘCIE OD LEWEJ */
td img {
    background-color: #ffffff !important;
    padding: 3px;
    border-radius: 4px;
    border: 1px solid #8c6a4c;
    vertical-align: middle;
    margin-right: 15px; /* Odstęp od tekstu */
    margin-left: 5px;  /* ODSUNIĘCIE OD LEWEJ KRAWĘDZI */
    width: 20px;
    height: 20px;
}

/* Dodatkowy fix dla pierwszej kolumny, żeby tekst nie był przyklejony */
td:first-child {
    padding-left: 15px;
}

/* 6. Fix dla opisu instrukcji w pobieralni */
.instrukcja {
    color: #f4e4bc !important; /* Jasny tekst na ciemnym tle strony */
}






















