.file-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.file-list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    padding: 10px 15px;
    /*font-weight: bold;*/
    border-bottom: 2px solid #eee;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 70%;
    border-radius: 5px;
    position: relative;
    max-height: 90vh;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

pre {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    /*overflow-x: auto;*/
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}