.folder-list {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: flex-start;  /* align to the left */
    font-size: 15px;
    background-color: #c0c0c0;  /* classic gray */
    padding: 10px;
    border: 3px solid #808080;  /* Win95 border */
    max-width: 100%; /* adjust as needed */
}

.folder-row {
    display: flex;
    align-items: center;
    margin: 2px 0;
}

.folder-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
@font-face {
	color: #012A36;
	font-family: "Flexi_IBM_VGA_True";
	src: url('/fonts/Flexi_IBM_VGA_True.ttf') format("truetype");
}
body { font-family: "Flexi_IBM_VGA_True";}

.win95-window {
  border: 2px solid #404040;
  box-shadow: inset 2px 2px 0 #fff, inset -2px -2px 0 #404040;
  background: #c0c0c0;
  font-family: "Flexi_IBM_VGA_True";
}

.win95-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 6px;
  height: 26px;
  border: 1px solid black;
  background: linear-gradient(180deg, #000080, #0000a0);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.title-left {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.title-icon {
  width: 16px;
  height: 16px;
}

.controls {
  display: inline-flex;
  gap: 4px;
}

.controls .btn {
  width: 18px;
  height: 16px;
  background: #f0f0f0;
  border: 1px solid #404040; 
  font-size: 12px;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
}
.controls .btn.close {
  background: red;
  color: #fff;
}

.window-body {
  padding: 10px;
  background: #e0e0e0;
  font-size: 13px;
}
