/* Základní vzhled stránky */
body {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Hlavní box */
.box {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Nadpisy */
h1, h2 {
    color: #0077cc;
    margin-top: 0;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

h3 {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #0077cc;
}

/* Odkazy */
a {
    color: #555;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Seznamy – sjednocené */
ul {
    padding-left: 0;
    margin: 0;
}

li {
    list-style: none;
}

/* Link-list (úvodní odkazy) */
.link-list {
    text-align: left;
    margin: 10px 0 20px 0;
}

.link-list li {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

/* Year-list (seznam roků) */
.year-list {
    text-align: left;
    margin: 10px 0 20px 0;
}

.year-list li {
    margin: 8px 0;
}

/* Photo-list (seznam fotoalb) */
.photo-list {
    text-align: left;
    margin: 10px 0 25px 0;
}

.photo-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

/* Ikony */
.link-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Tlačítka */
button {
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    background: #0077cc;
    color: white;
    cursor: pointer;
    margin-top: 5px;
}

button:hover {
    background: #005fa3;
}

.back-btn {
    background: #666;
    margin-top: 20px;
}

.back-btn:hover {
    background: #444;
}

/* Input */
input {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/* Oddělovač */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}
