/* Vault Accounts Page Styles */

.dropdown-toggle::after {
  content: none;
}

.account-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  cursor: pointer;
  transition: all 0.2s ease;
}

.account-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.account-card.vault-active {
  border: 1px solid var(--primary-color);
}

.account-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: white;
}

.vault-icon {
  background: linear-gradient(135deg, #246cf9, #0056b3);
}

.account-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.account-amount {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.accounts-section {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

/* Overflow fix for dropdown */
.card-body {
  overflow: visible !important;
}

.table-responsive {
  overflow: visible !important;
}

.accounts-header {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #f9fafb;
}

.accounts-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.accounts-table {
  margin: 0;
  overflow: visible;
}

.accounts-table th {
  font-weight: 500;
  color: #6b7280;
  border-bottom: 1px solid #f1f3f4;
  padding: 1rem 1.5rem;
  background-color: #f9fafb;
  font-size: 0.875rem;
}

.accounts-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: middle;
  font-size: 0.875rem;
  position: relative;
}

.account-row {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.account-row:hover td {
  background-color: rgba(140, 174, 244, 0.05) !important;
}

.account-row:hover td:first-child {
  box-shadow: -2px 0 0 #246cf9;
}

.account-row:hover td:last-child {
  box-shadow: 2px 0 0 #246cf9;
}

.account-details {
  flex: 1;
}

.account-name {
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.account-type {
  color: #6b7280;
}

.balance-amount {
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.vault-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vault-search-container {
  position: relative;
  display: inline-block;
}

.vault-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.search-input {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 8px 12px 8px 32px;
  width: 250px;
  font-size: 14px;
}

.archived-accounts-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.archived-accounts-btn:hover {
  border-color: #246cf9;
  background-color: #f8f9fa;
}

.archived-accounts-btn .archived-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
  font-size: 11px;
}

.archived-accounts-btn .archived-checkbox::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.archived-accounts-btn.active .archived-checkbox {
  background-color: #246cf9;
  border-color: #246cf9;
}

.archived-accounts-btn.active .archived-checkbox::before {
  opacity: 1;
  color: white;
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown .dropdown-btn {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  color: #374151;
  font-weight: 500;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 200px;
  white-space: nowrap;
  justify-content: space-between;
}

.custom-dropdown .dropdown-btn:hover {
  border-color: #246cf9;
  background-color: #f8f9fa;
}

.custom-dropdown .dropdown-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 100%;
  white-space: nowrap;
  z-index: 1000;
  display: none;
  padding: 8px;
}

.custom-dropdown.open .dropdown-menu {
  display: block;
}

.custom-dropdown .dropdown-option {
  padding: 10px 14px;
  font-size: 14px;
  color: #212529;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.custom-dropdown .dropdown-option:hover {
  background: #e8f0fe;
}

.custom-dropdown .dropdown-option.selected {
  background: #e8f0fe;
  font-weight: 500;
}

.action-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
}

.action-icon:hover:not(.disabled) {
  background-color: #e9ecef;
}

.action-icon.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto;
}

.action-icon.disabled:hover {
  background-color: transparent;
}

/* Dark tooltip */
[data-tooltip] {
  position: relative;
}

.dropdown[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 100;
}

[data-tooltip]::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #1f2937;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 100;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity: 1;
}

.action-icon.disabled[data-tooltip] {
  pointer-events: auto;
}

/* Account Dropdown Menu */
.account-dropdown-menu {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 180px;
  margin-top: 0.5rem;
  white-space: nowrap;
}

.account-dropdown-menu .dropdown-item {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.account-dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #333;
}

.account-dropdown-menu .dropdown-item i {
  width: 16px;
  text-align: center;
  color: #6c757d;
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 0;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-header {
  padding: 20px 25px 0;
  border-bottom: none;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.modal-close,
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #e8e8ed;
  border: none;
  font-size: 14px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover,
.modal-close-btn:hover {
  background: #d8d8dd;
  color: #212529;
}

.modal-body {
  padding: 20px 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-input.input-error {
  border-color: #dc3545;
}

.form-input.input-error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
}

.form-input:focus {
  outline: none;
  border-color: #246cf9;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.checkbox-input {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #246cf9;
}

.checkbox-label {
  font-size: 14px;
  color: #212529;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.learn-more-link {
  color: #246cf9;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.learn-more-link:hover {
  text-decoration: underline;
}

.gas-station-icon {
  color: #6c757d;
  font-size: 16px;
  margin-left: 8px;
}

.modal-footer {
  padding: 0 25px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.modal-footer .btn.btn-outline,
.modal-footer .btn.btn-cancel-gray {
  font-family: "Inter", sans-serif !important;
  background: #e2e2ec !important;
  color: #424242 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-footer .btn.btn-outline:hover,
.modal-footer .btn.btn-cancel-gray:hover {
  background: #d0d0da !important;
}

.modal-footer .btn.btn-primary {
  font-family: "Inter", sans-serif !important;
  background-color: #327cc8 !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-footer .btn.btn-primary:hover {
  background-color: #2a6ba8 !important;
}

/* Transfer Modal Styles */
.transfer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1060;
}

.transfer-modal-content {
  background: white;
  border-radius: 12px;
  padding: 0;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.transfer-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transfer-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.transfer-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transfer-modal-close:hover {
  color: #212529;
}

.transfer-modal-body {
  padding: 25px;
  max-height: 70vh;
  overflow-y: auto;
}

.transfer-form-group {
  margin-bottom: 25px;
}

.transfer-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 8px;
}

.asset-selector {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
  position: relative;
}

.asset-selector:hover {
  border-color: #246cf9;
}

.asset-icon-bitcoin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f7931a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-right: 12px;
}

.asset-info {
  flex: 1;
}

.asset-name {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
  margin: 0;
}

.asset-code {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

.dropdown-arrow {
  color: #6c757d;
  margin-left: 8px;
}

.account-selector {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
  position: relative;
}

.account-selector:hover {
  border-color: #246cf9;
}

.account-icon-vault {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #246cf9, #0056b3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 12px;
}

.transfer-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.transfer-tab {
  background: none;
  border: none;
  padding: 8px 0;
  margin-right: 24px;
  font-size: 14px;
  color: #6c757d;
  cursor: pointer;
  position: relative;
}

.transfer-tab.active {
  color: #246cf9;
  font-weight: 500;
}

.transfer-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #246cf9;
}

.destination-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 14px;
  color: #6c757d;
  background-color: #f8f9fa;
}

.destination-input::placeholder {
  color: #adb5bd;
}

.amount-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.amount-group {
  display: flex;
  flex-direction: column;
}

.amount-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.amount-input:focus {
  outline: none;
  border-color: #246cf9;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.fee-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.fee-value {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.fee-unit {
  font-size: 12px;
  color: #6c757d;
  margin-left: 8px;
}

.fee-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.fee-btn {
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fee-btn.active {
  background: #246cf9;
  color: white;
  border-color: #246cf9;
}

.fee-btn:hover:not(.active) {
  border-color: #246cf9;
  color: #246cf9;
}

.note-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
}

.note-textarea:focus {
  outline: none;
  border-color: #246cf9;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.note-textarea::placeholder {
  color: #adb5bd;
}

.transfer-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-transfer-cancel {
  background: white;
  color: #6c757d;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-transfer-cancel:hover {
  background-color: #f8f9fa;
  border-color: #6c757d;
}

.btn-transfer-submit {
  background: #246cf9;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-transfer-submit:hover {
  background: #0056b3;
}

.btn-transfer-submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

/* Archive Modal Styles */
.archive-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.archive-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #246cf9;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 12px;
}

.archive-brand-name {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

.archive-message {
  margin-bottom: 20px;
}

.archive-message p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.archive-warning-box {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background-color: #fff9e6;
  margin-bottom: 20px;
}

.warning-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffc107;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 12px;
  flex-shrink: 0;
}

.warning-text {
  font-size: 14px;
  color: #212529;
  line-height: 1.4;
  flex: 1;
}

#archiveModal .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 25px 20px;
}

#archiveModal .btn-modal-cancel {
  background: #ffffff;
  color: #327cc8;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  border: none;
  padding: 13px 20px;
  cursor: pointer;
}

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

#archiveModal .btn-modal-confirm {
  background: linear-gradient(180deg, #4685ff 0%, #246cf9 100%);
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}

#archiveModal .btn-modal-confirm:hover {
  background: linear-gradient(180deg, #3a7ae8 0%, #1d5fd6 100%);
}

/* Auto-fueling Confirm Modal Styles */
.modal.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.modal.confirm-modal .modal-content {
  background: white;
  width: 724px;
  padding: 40px;
  position: relative;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  max-width: none;
  box-shadow: none;
}

.modal.confirm-modal .modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e8e8ed;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s;
}

.modal.confirm-modal .modal-close-btn:hover {
  background: #d8d8dd;
  color: #212529;
}

.modal.confirm-modal .modal-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #374151;
  margin-bottom: 24px;
}

.modal.confirm-modal .modal-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
}

.modal.confirm-modal .modal-message .warning-icon {
  color: #f0ad4e;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}

.modal.confirm-modal .modal-message p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.modal.confirm-modal .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
}

.modal.confirm-modal .modal-buttons .btn-modal-cancel {
  background: #ffffff;
  color: #327cc8;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  border: none;
  padding: 13px 20px;
  cursor: pointer;
}

.modal.confirm-modal .modal-buttons .btn-modal-cancel:hover {
  background: #f8f9fa;
}

.modal.confirm-modal .modal-buttons .btn-modal-confirm {
  background: linear-gradient(180deg, #4685ff 0%, #246cf9 100%);
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}

.modal.confirm-modal .modal-buttons .btn-modal-confirm:hover {
  background: linear-gradient(180deg, #3a7ae8 0%, #1d5fd6 100%);
}

/* Pagination Styles */
.pagination-info {
  font-size: 14px;
}

.pagination {
  margin: 0;
}

.pagination .page-link {
  color: #6c757d;
  border: 1px solid #dee2e6;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  margin: 0 0.125rem;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  color: #246cf9;
  background-color: #e9ecef;
  border-color: #246cf9;
}

.pagination .page-item.active .page-link {
  background-color: #246cf9;
  border-color: #246cf9;
  color: white;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
  cursor: not-allowed;
}

.pagination .page-item:first-child .page-link {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.text-dark {
  color: #212529 !important;
}

.vault-success {
  color: #246cf9 !important;
}

.unarchive-btn {
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  border: none;
  font-weight: bold;
  color: #246cf9;
}
