.downMainDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 3%;
    margin-bottom: 3%;
}

/* Kategóriadobozok */
#downDiv {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Fájllista */
.uploadContent {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.downloadContent {
    background: #f9f9f9;
    margin: 8px 0;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;  /* Ezáltal egymás alatt lesz a fájlnév, nem sorban */
    align-items: flex-start; /* Balra igazítja a linkeket */
    transition: background 0.3s;
    word-break: break-word;  /* Hosszú fájlneveknél törje a sort */
}

.downloadContent:hover {
    background: #e9ecef;
}

.downFiless {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    width: 100%;
    white-space: normal;      /* Engedi a sortörést */
    word-wrap: break-word;
    overflow-wrap: anywhere;
    display: block;
}

.downFiless:hover {
    text-decoration: underline;
}

.downEmpty {
    text-align: center;
    color: #777;
}

/* Mobilbarát kialakítás */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
