/* File Download Card Component */
.file-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin: 20px 0;
  border: 1px solid #d8e8f1;
  border-radius: 8px;
  background-color: #f3f7fc;
  transition: all 0.2s ease;
}

.file-download-card:hover {
  border-color: #009ED2;
  box-shadow: 0 2px 8px rgba(0, 158, 210, 0.1);
}

.file-download-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.file-download-content {
  flex: 1;
  min-width: 0;
}

.file-download-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-download-meta {
  font-size: 12px;
  color: #5c727d;
}

.file-download-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #009ED2;
  color: white !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.file-download-button:hover {
  background-color: #007BB8;
}

.file-download-button-icon {
  font-size: 16px;
  line-height: 1;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
  .file-download-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .file-download-button {
    width: 100%;
    justify-content: center;
  }
}
