body {
  background-color: #2B2A33;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  background: #2B2A33;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(50,32,79,0.12);
  margin: 36px auto;
  max-width: 700px;
  padding: 30px 18px 22px 18px;
}

h1 {
  color: #d2ace8;
  font-weight: bold;
  margin: 16px 0 30px 0;
  text-align: center;
  letter-spacing: 1px;
}

#zipList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.folder-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #3f2f52;
  border-radius: 10px;
  padding: 17px 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(44,23,77,0.04);
  transition: background 0.14s, box-shadow 0.14s;
  min-height: 40px;
  animation: fadeIn 0.4s;
}

.folder-item:hover {
  background: #784e9c;
  box-shadow: 0 3px 14px rgba(140,80,209,0.10);
}

.folder-name {
  color: #d2ace8;
  font-weight: bold;
  font-size: 1.07em;
  margin-right: 18px;
  flex: 2 1 0;
  overflow-wrap: anywhere;
}

.upload-time {
  color: #d2ace8bb;
  font-size: 0.97em;
  margin-right: 14px;
  min-width: 108px;
  text-align: right;
  flex: 0 1 auto;
  white-space: nowrap;
}

.file-size {
  color: #ccc;
  font-size: 0.97em;
  min-width: 70px;
  text-align: right;
  flex: 0 1 auto;
  margin-right: 18px;
  white-space: nowrap;
}

.download-btn {
  background-color: #d2ace8;
  color: #2B2A33;
  border: none;
  border-radius: 18px;
  padding: 9px 26px 9px 26px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(80,40,120,0.07);
}

.download-btn:hover {
  background-color: #ab80d1;
  color: #fff;
}

.status, .loading {
  display: block;
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 12px 8px;
  text-align: center;
  border-radius: 8px;
  background: #3f2f52;
  color: #d2ace8;
  font-weight: bold;
  font-size: 1.05em;
}

.status.error {
  background: #4e2932;
  color: #ffbdbd;
}

.status.success {
  background: #294e32;
  color: #bde8bd;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px);}
  to   { opacity: 1; transform: translateY(0);}
}

@media (max-width: 600px) {
  .container { padding: 9px; }
  .folder-item { flex-direction: column; align-items: flex-start; gap: 5px; }
  .download-btn { width: 100%; margin-left: 0; }
}