
/* Events Section */
.section {
    /* width: calc(100% - 40px); */
    /* max-width: 800px; */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.section h2 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 15px;
}
.section-mini {
    max-width: 500px;
}
.dogodki {
    display: grid;
    gap: 1rem;
    justify-content: center;
    padding: 20px;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    align-items: stretch;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    grid-template-areas: "svetovanja termini"
                            "svetovanja termini"
                            "program program";
}
.section p, .section li {
    line-height: 1.6;
    font-size: 1rem;
    color: #555;
}

.section a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.section ul {
    list-style-type: square !important;
}

.section li {
    background-color: #fff;
    margin-left: 40px;
}

.section a:hover {
    text-decoration: underline;
}
/* List Styles */
.dogodki ul {
    list-style-type: none;
    padding: 0;
}

ul.dogodki-wrapper li {
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 6px;
    gap: 5px;
}

.dogodki .termini li {
    background-color: #f9f9f9;
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    min-height: 36px;
}

.dogodki .termini li.expired {
    background-color: #f0f0f0;
    opacity: 0.6;
    position: relative;
    cursor: not-allowed;
}

.dogodki .termini li.ongoing {
    background-color: #f9f9f9;
}


.event-date {
    font-weight: bold;
    color: #2e7d32;
    font-size: large;
    white-space: nowrap;
    margin-right: 5px;
}

.event-location {
    font-style: italic;
    color: #666;
    text-align: end;
    width: 220px;
}

.event-details {
    margin-left: auto;
    margin-right: 15px;
    font-size: small;
    margin-top: 2px;
    opacity: 0.6;
}

@media (max-width: 1600px) {
    .dogodki {
        max-width: 1300px;
    }
    .section {
        max-width: unset;
    }
}

@media (max-width: 1050px) {
    .dogodki {
        grid-template-areas: "termini"
        "svetovanja"
        /* "vikend" */
        "program";
    }
    .section {
        max-width: unset;
    }
    .event-location {
        width: 180px;
    }
}

@media (max-width: 600px) {
    .event-details {
        display: none;
    }
    .event-date {
        white-space: normal;
    }
}