* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

#app {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

.container {
  padding: 20px;
  max-width: 750px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    background-color: #f5f5f5;
  }

  #app {
    max-width: 100%;
    padding: 0;
    min-height: 100vh;
  }

  .container {
    max-width: 100%;
    padding: 12px;
  }
}

.banner-section {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .banner-section {
    margin-bottom: 15px;
  }
}

.banner-swiper {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 20px;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-item {
  position: relative;
  height: 400px;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s;
  border: none;
}

.banner-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.banner-arrow.prev {
  left: 20px;
}

.banner-arrow.next {
  right: 20px;
}

.search-section {
  padding: 0 20px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.search-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.search-icon-text {
  font-size: 18px;
  margin-right: 12px;
}

.search-placeholder {
  color: #999;
  font-size: 16px;
}

.quick-actions {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-bottom: 20px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.action-item:hover {
  transform: translateY(-3px);
}

.action-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.profile-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.action-icon-text {
  font-size: 32px;
}

.action-label {
  font-size: 14px;
  color: #666;
}

.folder-section {
  background-color: #fff;
  border-radius: 16px;
  margin: 0 20px;
  padding: 24px;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.folder-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.folder-item {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.3s;
}

.folder-item:hover {
  background-color: #f5f5f5;
}

.folder-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f2ff 0%, #bae7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.folder-emoji {
  font-size: 40px;
}

.folder-name {
  font-size: 14px;
  color: #333;
  text-align: center;
}

.latest-section {
  background-color: #fff;
  border-radius: 16px;
  margin: 0 20px;
  padding: 24px;
}

.file-list {
  display: flex;
  flex-direction: column;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  color: #999;
}

.empty-icon {
  font-size: 60px;
  margin-bottom: 16px;
}

.empty-text {
  font-size: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}

.file-item:hover {
  background-color: #fafafa;
  margin: 0 -12px;
  padding: 16px 12px;
  border-radius: 8px;
}

.file-item:last-child {
  border-bottom: none;
}

.file-item.admin {
  padding-right: 0;
}

.file-item.viewed {
  opacity: 0.7;
}

.file-item.viewed .file-title {
  color: #999;
}

.file-item.admin:hover {
  padding-right: 12px;
}

.file-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.file-delete-btn {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.file-delete-btn:hover {
  opacity: 1;
}

.file-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 16px;
  background-color: #f5f5f5;
}

.type-badge {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.type-badge.pdf {
  background-color: #ff4d4f;
  color: #fff;
}

.type-badge.docx {
  background-color: #1890ff;
  color: #fff;
}

.type-badge.xlsx {
  background-color: #52c41a;
  color: #fff;
}

.type-badge.jpg,
.type-badge.png {
  background-color: #faad14;
  color: #fff;
}

.file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.file-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}

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

.arrow-icon {
  font-size: 24px;
  color: #ccc;
}

.empty-result {
  text-align: center;
  padding: 40px 0;
}

.empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.empty-text {
  font-size: 16px;
  color: #999;
}

.empty-hint {
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
}

.folder-header {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
}

.folder-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
}

.folder-name-header {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.file-count {
  font-size: 14px;
  color: #999;
}

.file-header {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
}

.file-title-header {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.file-type-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #1890ff;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.content-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
}

.image-preview {
  text-align: center;
}

.preview-image {
  max-width: 100%;
  max-height: 500px;
  border-radius: 8px;
}

.document-preview {
  text-align: center;
  padding: 60px 0;
}

.doc-icon-wrapper {
  margin-bottom: 20px;
}

.doc-icon-emoji {
  font-size: 80px;
}

.doc-name {
  font-size: 18px;
  color: #333;
}

.doc-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  background: #f5f5f5;
}

.doc-fallback {
  text-align: center;
  padding: 60px 0;
}

.action-bar {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.view-btn {
  background: #1890ff;
  color: #fff;
}

.view-btn:hover {
  background: #40a9ff;
}

.download-btn {
  background: #52c41a;
  color: #fff;
}

.download-btn:hover {
  background: #73d13d;
}

.save-btn {
  background: #faad14;
  color: #fff;
}

.save-btn:hover {
  background: #ffc53d;
}

.share-btn {
  background: #667eea;
  color: #fff;
}

.share-btn:hover {
  background: #7c8ff5;
}

.favorite-btn {
  background: #ff9500;
  color: #fff;
}

.favorite-btn:hover {
  background: #ffad33;
}

.favorite-btn.active {
  background: #ff4d4f;
}

.delete-btn {
  background: #ff4d4f;
  color: #fff;
}

.delete-btn:hover {
  background: #ff7875;
}

.action-icon {
  font-size: 18px;
}

.search-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.clear-icon {
  cursor: pointer;
  color: #999;
  font-size: 18px;
  padding: 4px;
}

.cancel-btn {
  color: #1890ff;
  cursor: pointer;
  font-size: 14px;
}

.result-count {
  padding: 12px 20px;
  color: #666;
  font-size: 14px;
}

.profile-header {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
}

.avatar-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.avatar-emoji {
  font-size: 50px;
}

.username {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.user-tip {
  font-size: 14px;
  color: #999;
}

.menu-list {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: #fafafa;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-icon {
  font-size: 24px;
}

.menu-text {
  font-size: 16px;
  color: #333;
}

.folder-management {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.add-folder-btn {
  color: #1890ff;
  cursor: pointer;
  font-size: 14px;
}

.folder-list {
  margin-top: 16px;
}

.folder-item-admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.folder-item-admin:last-child {
  border-bottom: none;
}

.folder-info {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.folder-emoji-item {
  font-size: 32px;
}

.folder-name-item {
  font-size: 16px;
  color: #333;
}

.delete-folder-btn {
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
}

.app-info {
  text-align: center;
  padding: 30px;
}

.version {
  font-size: 12px;
  color: #ccc;
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  z-index: 1001;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  margin-bottom: 20px;
}

.modal-input:focus {
  border-color: #1890ff;
}

.modal-buttons {
  display: flex;
  gap: 16px;
}

.modal-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.modal-btn.cancel {
  background: #f5f5f5;
  color: #666;
}

.modal-btn.cancel:hover {
  background: #e5e5e5;
}

.modal-btn.confirm {
  background: #1890ff;
  color: #fff;
}

.modal-btn.confirm:hover {
  background: #40a9ff;
}

.icon-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.icon-option {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 28px;
  background: #f5f5f5;
  transition: all 0.3s;
}

.icon-option:hover {
  background: #e5e5e5;
}

.icon-option.selected {
  background: #1890ff;
}

.upload-section {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
}

.upload-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.upload-tip {
  font-size: 14px;
  color: #999;
  margin-bottom: 24px;
}

.upload-box {
  border: 2px dashed #d9d9d9;
  border-radius: 12px;
  padding: 60px 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-box:hover {
  border-color: #1890ff;
  background: #f5f7ff;
}

.upload-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.upload-text {
  font-size: 16px;
  color: #666;
}

.selected-file {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.file-icon-wrapper-upload {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 10px;
  margin-right: 16px;
}

.file-type-emoji {
  font-size: 32px;
}

.file-name {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}

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

.remove-icon {
  margin-left: auto;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  padding: 8px;
}

.remove-icon:hover {
  color: #ff4d4f;
}

.folder-section-upload {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.section-title-upload {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.folder-grid-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.folder-item-select {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.folder-item-select:hover {
  background: #e5e5e5;
}

.folder-item-select.selected {
  border-color: #1890ff;
  background: #f0f5ff;
}

.folder-emoji-select {
  font-size: 24px;
}

.folder-name-select {
  font-size: 14px;
  color: #333;
}

.upload-btn-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.title-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  margin-bottom: 16px;
}

.title-input:focus {
  border-color: #1890ff;
}

.submit-btn {
  width: 100%;
  padding: 14px 0;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #40a9ff;
}

.history-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.history-list {
  margin-top: 16px;
}

.history-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.history-item:last-child {
  border-bottom: none;
}

.history-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  margin-right: 16px;
}

.history-icon {
  font-size: 24px;
}

.history-info {
  flex: 1;
}

.history-title {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

.history-time {
  font-size: 12px;
  color: #999;
}

.history-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}

.history-status.success {
  background: #f6ffed;
  color: #52c41a;
}

.page-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  cursor: pointer;
}

.back-icon {
  font-size: 24px;
  margin-right: 16px;
}

.back-text {
  font-size: 16px;
  color: #1890ff;
}

.search-input-page {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  background: #f5f5f5;
}

.search-input-page:focus {
  border-color: #1890ff;
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.breadcrumb-item {
  color: #1890ff;
  cursor: pointer;
}

.breadcrumb-item:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  #app {
    padding: 10px;
  }

  .container {
    padding: 12px;
  }

  .banner-swiper {
    height: 200px;
    margin: 0;
    border-radius: 0;
  }

  .banner-item {
    height: 200px;
  }

  .banner-item img,
  .banner-image {
    height: 200px;
  }

  .banner-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .banner-arrow.prev {
    left: 10px;
  }

  .banner-arrow.next {
    right: 10px;
  }

  .search-section {
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .search-box {
    padding: 12px 18px;
    border-radius: 50px;
  }

  .quick-actions {
    padding: 15px 10px;
  }

  .action-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .action-icon-text {
    font-size: 24px;
  }

  .folder-section {
    margin: 0 10px;
    padding: 18px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 16px;
  }

  .folder-grid {
    gap: 10px;
  }

  .folder-item {
    width: 80px;
    padding: 10px;
  }

  .folder-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .folder-emoji {
    font-size: 28px;
  }

  .folder-name {
    font-size: 12px;
  }

  .latest-section {
    margin: 0 10px;
    padding: 18px;
    border-radius: 12px;
  }

  .file-item {
    padding: 12px 0;
  }

  .file-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }

  .type-badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .file-title {
    font-size: 14px;
  }

  .file-meta {
    font-size: 11px;
  }

  .arrow-icon {
    font-size: 20px;
  }

  .page-header {
    padding: 14px;
    border-radius: 12px;
  }

  .back-icon {
    font-size: 20px;
    margin-right: 12px;
  }

  .back-text {
    font-size: 14px;
  }

  .folder-header {
    padding: 20px;
    border-radius: 12px;
  }

  .folder-icon {
    font-size: 48px;
  }

  .folder-name-header {
    font-size: 20px;
  }

  .file-count {
    font-size: 12px;
  }

  .file-header {
    padding: 20px;
    border-radius: 12px;
  }

  .file-title-header {
    font-size: 18px;
  }

  .content-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .preview-image {
    max-height: 300px;
  }

  .action-bar {
    padding: 15px;
    gap: 10px;
    border-radius: 12px;
  }

  .action-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .search-header {
    padding: 12px 16px;
    border-radius: 50px;
    gap: 10px;
  }

  .search-input-page {
    font-size: 14px;
  }

  .profile-header {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .avatar-wrapper {
    width: 80px;
    height: 80px;
  }

  .avatar-emoji {
    font-size: 40px;
  }

  .username {
    font-size: 20px;
  }

  .menu-item {
    padding: 16px 18px;
  }

  .menu-icon {
    font-size: 20px;
  }

  .menu-text {
    font-size: 14px;
  }

  .folder-management {
    padding: 18px;
    border-radius: 12px;
  }

  .modal-content {
    width: 95%;
    padding: 24px 18px;
    border-radius: 12px;
  }

  .modal-title {
    font-size: 18px;
  }

  .upload-section {
    padding: 20px;
    border-radius: 12px;
  }

  .upload-box {
    padding: 40px 0;
  }

  .upload-icon {
    font-size: 36px;
  }

  .upload-text {
    font-size: 14px;
  }

  .selected-file {
    padding: 15px;
    border-radius: 10px;
  }

  .file-icon-wrapper-upload {
    width: 50px;
    height: 50px;
  }

  .file-type-emoji {
    font-size: 26px;
  }

  .file-name {
    font-size: 14px;
  }

  .file-size {
    font-size: 11px;
  }

  .folder-section-upload {
    padding: 18px;
    border-radius: 12px;
  }

  .upload-btn-wrapper {
    padding: 18px;
    border-radius: 12px;
  }

  .history-section {
    padding: 18px;
    border-radius: 12px;
  }

  .history-item {
    padding: 12px 0;
  }

  .history-icon-wrapper {
    width: 42px;
    height: 42px;
  }

  .history-icon {
    font-size: 20px;
  }

  .history-title {
    font-size: 13px;
  }

  .history-time {
    font-size: 11px;
  }

  .file-item.admin {
    padding-right: 0;
  }

  .file-delete-btn {
    padding: 6px 10px;
    font-size: 18px;
  }
}