/* Side panel styles */
.side-panel {
    width: 400px;
    min-width: 200px;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    height: calc(100vh - 40px);
    position: sticky;
    top: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-panel h3 {
    color: #40E0D0;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.processed-files {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.processed-file {
    background: #333;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.processed-file:hover {
    transform: translateY(-2px);
    background-color: #404040;
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.file-name {
    font-size: 14px;
    color: #40E0D0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    white-space: normal;
}

.file-size {
    font-size: 12px;
    color: #666;
} 