.approve-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.approve-container.show {
  opacity: 1;
}

.approve-header a {
  display: flex;
  justify-content: center;
}

.approve-header a img {
  max-width: 200px;
}

.approve-header .details {
  color: #1b1b1b;
  margin: 30px 0;
  font-size: 14px;
  text-align: left;
}

.approve-header .details p {
  margin: 0;
}

.subheader-title {
  color: #555;
  margin-bottom: 20px;
  font-size: 18px;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
}

.file-table th,
.file-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.file-table th {
  background-color: #dc3545;
  color: #fff;
}

.file-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.file-table tbody tr:hover {
  background-color: #fee1e181;
  transition: 0.1s ease-in;
}

.download-link {
  text-align: center !important;
}

.download-link span {
  color: #dc3545;
  cursor: pointer;
}

.download-btn {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #dc3545;
  color: #fff;
  border: 2px solid #dc3545;
  transition: 0.1s ease-in;
}

.approve-btn {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.approve-btn:hover {
  background-color: #c82333;
  transition: 0.1s ease-in;
}

.to_emails {
  margin-left: 21px;
}

.to_emails p small {
  color: #dc3545;
}

@media (max-width: 768px) {
  .file-table thead {
    display: none;
  }

  .file-table,
  .file-table tbody,
  .file-table tr,
  .file-table td {
    display: block;
    width: 100%;
  }

  .file-table td {
    text-align: right;
    position: relative;
    padding-left: 50%;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
  }

  .file-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    color: #333;
  }
  .download-link {
    text-align: right !important;
  }
}
