﻿.alist-file-download {
  margin-top: 10px;
  border-bottom: 1px solid #eee;
}

.alist-file-download a {
  display: block;
  padding: 8px;
  background: #f5f5f5;
  text-decoration: none;
  color: #4c4c4c;
  transition: all 0.5s ease; /* 平滑过渡效果 */
}

.alist-file-download a:hover {
  background-color: #ebebeb;
  color: #000;
}

/* Loading 占位符样式 */
.alist-loading-placeholder {
  min-height: 120px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px dashed #ddd;
  border-radius: 4px;
  text-align: center;
}

.alist-loading-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.alist-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: alist-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes alist-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.alist-cache-empty {
  padding: 15px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  color: #856404;
}

.alist-error {
  color: #dc3545;
  padding: 10px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

.alist-download-icon {
  margin-right: 8px;
  font-size: 1.1em;
}
