.container {
    width: 80%;
    margin: auto;
}

.table {
    display: table;
    width: 100%;
}

.row {}

.cell {
    width: 100%;
    display: table-cell;
    padding: 10px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.archive-contents {
    list-style-type: none;
    padding-left: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    display: block;
}

.file-item {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.file-item:hover {
    background-color: #f0f0f0;
}