table.recipients-table th > a {
  color: gray;
  text-decoration: none;
}
table.recipients-table th.cb {
  width: 50px;
}
table.recipients-table th.date,
table.recipients-table td.date {
  width: 25%;
  text-align: right;
}
.contact-emails {
  width: 100%;
  background-color: white;
}
.recipients-container {
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.recipients-header {
  margin-bottom: 24px;
}
.recipients-header h1 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px 0;
}
.recipients-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.btn-add-contacts {
  background-color: #eab308;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-add-contacts:hover {
  background-color: #ca8a04;
}
.btn-delete-selected {
  background-color: transparent;
  color: #6b7280;
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-delete-selected:hover {
  background-color: #f9fafb;
  color: #dc2626;
  border-color: #fca5a5;
}
.btn-delete-selected:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.recipients-table-container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.recipients-table {
  width: 100%;
  border-collapse: collapse;
}
.recipients-table thead {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.recipients-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.recipients-table th.checkbox-col {
  width: 50px;
  padding-left: 24px;
}
.recipients-table tbody tr {
  height: 56px;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s;
}
.recipients-table tbody tr:last-child {
  border-bottom: none;
}
.recipients-table tbody tr:hover {
  background-color: #f9fafb;
}
.recipients-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  vertical-align: middle;
}
.recipients-table td.checkbox-col {
  padding-left: 24px;
}
.recipients-table input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #eab308;
}
.email-cell {
  color: #111827;
  font-weight: 400;
}
.date-cell {
  color: #6b7280;
  font-size: 14px;
  text-align: right;
}
.pagination-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  gap: 12px;
}
.pagination-info {
  color: #6b7280;
  font-size: 14px;
  margin-right: 8px;
}
.pagination-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #6b7280;
}
.pagination-btn:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.empty-state {
  padding: 64px 24px;
  text-align: center;
  color: #6b7280;
}
.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state-title {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}
.empty-state-description {
  font-size: 14px;
  color: #6b7280;
}
.contacts-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.contacts-card-header {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contacts-card-header::after {
  content: none;
}
.contacts-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts-icon-box svg {
  width: 22px;
  height: 22px;
  color: #666;
  display: block;
}
.contacts-card-header-content {
  flex: 1;
  padding-top: 4px;
}
.contacts-card-header-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.contacts-card-header-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.contact-emails {
  width: 100%;
  height: 140px;
  padding: 14px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  color: black;
  resize: none;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
  line-height: 1.6;
  display: block;
}
.contact-emails::placeholder {
  color: #a3a3a3;
}
.contacts-divider {
  margin: 40px 0;
  text-align: center;
  position: relative;
  height: auto;
  line-height: 1;
}
.contacts-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background:
    linear-gradient(
      to right,
      transparent,
      #e5e5e5,
      transparent);
}
.contacts-divider-text {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: white !important;
  padding: 0 20px;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.contacts-card-footer {
  text-align: right;
}
.contact-emails:focus {
  outline: none;
  border-color: #a3a3a3;
  box-shadow: 0 0 0 3px rgba(163, 163, 163, 0.1);
}
.page-header {
  margin-bottom: 48px;
}
.page-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: black;
  margin: 0 0 12px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-header p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  margin: 0;
}
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  font-weight: 500;
  text-decoration: none;
}
.back-button:hover {
  color: black;
}
.btn-primary {
  background-color: #f7c837 !important;
  color: #000;
  border: 1px solid #34383B;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background-color: #FFC700 !important;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-file {
  background-color: #fafafa !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 540 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.btn-file:hover {
  border-color: #a3a3a3 !important;
  background-color: white !important;
}
.btn-file,
.btn-file:focus,
.btn-file:active,
.btn-file:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.upload-zone {
  border: 2px dashed #d4d4d4;
  border-radius: 12px;
  padding: 56px 32px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  display: block;
}
.upload-zone:hover {
  border-color: #a3a3a3;
  background-color: white;
}
.upload-icon {
  width: 64px;
  height: 64px;
  background:
    linear-gradient(
      135deg,
      #f5f5f5 0%,
      #e5e5e5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.upload-icon svg {
  width: 28px;
  height: 28px;
  color: #737373;
}
.upload-zone h4 {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.upload-zone p {
  font-size: 15px;
  color: #666;
  margin: 0 0 20px 0;
}
