/* General Reset and Layout */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #004d1c; /* Dark Green */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #004d1c;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    font-size: 1.1rem;
}

nav ul li a:hover {
    background-color: #004d1c;
    color: #fff;
    border-radius: 5px;
}

/* Section Styles */
section {
    background-color: #fff;
    width: 80%;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #004d1c;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #004d1c;
    text-decoration: none;
}

a:hover {
    color: #006B38;
}

/* Footer */
footer {
    background-color: #004d1c;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.pdf-download {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #004d1c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.pdf-download:hover {
    background-color: #006B38;
}

/* Source list */
ul {
    padding-left: 20px;
    list-style-type: none;
}

ul li {
    margin: 10px 0;
}

ul li a {
    font-size: 1.1rem;
    line-height: 1.6;
}

.progress-section {
    max-width: 900px;
    margin: 2rem auto;
}

.progress-section h2 {
    margin-bottom: 1rem;
}

/* Zoznam udalostí (timeline cez odrážky) */
.timeline-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
}

/* Malá guľka pred položkou (vizuálna timeline) */
.timeline-item::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    position: absolute;
    left: 0;
    top: 0.45rem;
}

/* Štítok so stavom (Hotovo / Takmer hotovo / Plánované) */
.timeline-status {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    margin-bottom: 0.25rem;
}

/* Farby podľa stavu */
.status-done {
    background-color: #28a745; /* zelená */
    color: #fff;
}

.status-inprogress {
    background-color: #ffc107; /* žltá */
    color: #333;
}

.status-planned {
    background-color: #6c757d; /* sivá */
    color: #fff;
}

.timeline-text {
    margin-top: 0.15rem;
    line-height: 1.5;
}

/* Vnútorné odrážky v blokoch 4–6 */
.timeline-text ul {
    margin: 0.3rem 0 0.3rem 1rem;
    padding-left: 1rem;
    list-style-type: disc;
}

.timeline-text ul ul {
    margin-top: 0.2rem;
    list-style-type: circle;
}

