table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}
th {
    cursor: pointer;
}
th.active-asc::after {
    content: " \2191";
}
th.active-desc::after {
    content: " \2193";
}

/* Modal háttér halványítása */
.modal-background {
    background: rgba(0, 0, 0, 0.5);
}

/* Modal méretének állítása */
.modal-container {
    width: 50%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .modal-container {
        width: 90%;
    }
}
