/* Základné nastavenia */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}


        #login-section, #downloads {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
 button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto; /* toto centrovanie funguje pri block alebo flex rodičovi */
    display: block; /* dôležité pre margin auto */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Hlavička */
header {
    background-color: #2c3e50; /* Tmavá modrá */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative; /* Pre umiestnenie IP adresy */
}

header h1 {
    margin: 0;
    font-size: 2.2em;
    text-align: center;
}

#ip-display {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #34495e; /* Trochu svetlejšia modrá pre pozadie IP */
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #ecf0f1; /* Svetlá farba textu */
}

/* Hlavný obsah */
main {
    padding: 40px 0;
}

h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 30px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.download-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.download-item h3 {
    color: #3498db; /* Modrá pre názvy súborov */
    margin-top: 0;
    font-size: 1.5em;
}

.download-item p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.download-item a {
    display: inline-block;
    background-color: #3498db; /* Modré tlačidlo */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-item a:hover {
    background-color: #2980b9; /* Tmavšia modrá pri hoveri */
}

/* Pätička */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9em;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    #ip-display {
        position: static; /* Na menších obrazovkách sa IP adresa posunie pod nadpis */
        text-align: center;
        margin-top: 10px;
        right: auto;
        top: auto;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .download-grid {
        grid-template-columns: 1fr; /* Na mobiloch jeden stĺpec */
    }
}