/*!***************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/modal.module.scss ***!
  \***************************************************************************************************************************************************************************************/
:root {
  --modal-padding: 1.5rem;
  --modal-border-radius: 16px;
  --modal-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --modal-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

.modal-module__modalOverlay--h1Lr5 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: modal-module__modalFadeIn--TFBsc 0.3s ease;
  padding: 1rem;
}

.modal-module__modalContent--vvQPS {
  background: #ffffff;
  border-radius: var(--modal-border-radius);
  box-shadow: var(--modal-shadow);
  overflow: hidden;
  animation: modal-module__modalSlideIn--CT5KI 0.3s ease;
  border: 1px solid rgba(26, 154, 148, 0.1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.modal-module__modalContent--vvQPS.modal-module__small--sTWjF {
  width: 100%;
  max-width: 400px;
}
.modal-module__modalContent--vvQPS.modal-module__medium--nVrGA {
  width: 100%;
  max-width: 600px;
}
.modal-module__modalContent--vvQPS.modal-module__large--Chg1O {
  width: 100%;
  max-width: 900px;
}
.modal-module__modalContent--vvQPS.modal-module__fullscreen--A4kDs {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  margin: 0;
}

.modal-module__modalHeader--s8E7P {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  color: white;
  padding: var(--modal-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--modal-border-radius) var(--modal-border-radius) 0 0;
  flex-shrink: 0;
}
.modal-module__modalHeader--s8E7P .modal-module__modalTitle--j_ST5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}
.modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6 {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--modal-transition);
  flex-shrink: 0;
}
.modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6 svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6:active {
  transform: scale(0.95);
}
.modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.modal-module__modalBody--mFtEM {
  padding: var(--modal-padding);
  overflow-y: auto;
  flex: 1;
  line-height: 1.6;
  color: #333333;
}
.modal-module__modalBody--mFtEM::-webkit-scrollbar {
  width: 8px;
}
.modal-module__modalBody--mFtEM::-webkit-scrollbar-track {
  background: rgba(26, 154, 148, 0.1);
  border-radius: 4px;
}
.modal-module__modalBody--mFtEM::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1a9a94, #158a84);
  border-radius: 4px;
}
.modal-module__modalBody--mFtEM::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #158a84, #1a9a94);
}
.modal-module__modalBody--mFtEM p {
  margin: 0 0 1rem 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
}
.modal-module__modalBody--mFtEM p:last-child {
  margin-bottom: 0;
}
.modal-module__modalBody--mFtEM button {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: var(--modal-transition);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.modal-module__modalBody--mFtEM button:hover {
  background: linear-gradient(135deg, #158a84 0%, #1a9a94 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 154, 148, 0.3);
}
.modal-module__modalBody--mFtEM button:active {
  transform: translateY(0);
}
.modal-module__modalBody--mFtEM button:focus {
  outline: 2px solid rgba(26, 154, 148, 0.5);
  outline-offset: 2px;
}
.modal-module__modalBody--mFtEM button.modal-module__secondary--KwOT9 {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}
.modal-module__modalBody--mFtEM button.modal-module__secondary--KwOT9:hover {
  background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
}
.modal-module__modalBody--mFtEM button.modal-module__danger--cXDUN {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}
.modal-module__modalBody--mFtEM button.modal-module__danger--cXDUN:hover {
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

.modal-module__modalFooter--FLgF2 {
  padding: var(--modal-padding);
  background: #f8f9fa;
  border-top: 1px solid rgba(26, 154, 148, 0.1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .modal-module__modalFooter--FLgF2 {
    flex-direction: column;
    align-items: stretch;
  }
  .modal-module__modalFooter--FLgF2 button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .modal-module__modalFooter--FLgF2 button:last-child {
    margin-bottom: 0;
  }
}

@keyframes modal-module__modalFadeIn--TFBsc {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-module__modalSlideIn--CT5KI {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .modal-module__modalOverlay--h1Lr5 {
    padding: 0.5rem;
  }
  .modal-module__modalContent--vvQPS.modal-module__small--sTWjF, .modal-module__modalContent--vvQPS.modal-module__medium--nVrGA, .modal-module__modalContent--vvQPS.modal-module__large--Chg1O {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .modal-module__modalHeader--s8E7P {
    padding: 1rem;
  }
  .modal-module__modalHeader--s8E7P .modal-module__modalTitle--j_ST5 {
    font-size: 1.125rem;
  }
  .modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6 {
    width: 32px;
    height: 32px;
  }
  .modal-module__modalHeader--s8E7P .modal-module__closeButton--nhej6 svg {
    width: 18px;
    height: 18px;
  }
  .modal-module__modalBody--mFtEM {
    padding: 1rem;
  }
  .modal-module__modalBody--mFtEM button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .modal-module__modalOverlay--h1Lr5 {
    padding: 0;
  }
  .modal-module__modalContent--vvQPS {
    border-radius: 0;
    height: 100vh;
    max-height: 100vh;
  }
  .modal-module__modalHeader--s8E7P {
    border-radius: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal-module__modalOverlay--h1Lr5,
  .modal-module__modalContent--vvQPS {
    animation: none;
  }
  .modal-module__closeButton--nhej6:hover {
    transform: none;
  }
  .modal-module__modalBody--mFtEM button:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .modal-module__modalContent--vvQPS {
    border: 2px solid #000000;
  }
  .modal-module__modalHeader--s8E7P {
    background: #000000;
  }
  .modal-module__closeButton--nhej6:hover {
    background: #ffffff;
    color: #000000;
  }
}
/*!****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/Wallet.module.scss ***!
  \****************************************************************************************************************************************************************************************/
:root {
  --wallet-padding: 2rem;
  --balance-padding: 2rem;
  --transaction-padding: 2rem;
  --table-font-size: 14px;
  --table-padding: 16px;
}

* {
  box-sizing: border-box;
}

.Wallet-module__walletContainer--JLQA8 {
  max-width: 100vw;
  overflow-x: hidden;
}

.Wallet-module__walletContainer--JLQA8 {
  background-color: #ffffff;
  color: #333333;
  min-height: 100vh;
  padding: var(--wallet-padding);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.Wallet-module__loading--qSVLm, .Wallet-module__error--XSGsc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.Wallet-module__spinner--MvIrH {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #1a9a94;
  border-radius: 50%;
  animation: Wallet-module__spin--t7UkH 1s linear infinite;
  margin-bottom: 1rem;
}

.Wallet-module__spinnerSmall--_FQIn {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: Wallet-module__spin--t7UkH 1s linear infinite;
  margin-right: 8px;
}

@keyframes Wallet-module__spin--t7UkH {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.Wallet-module__error--XSGsc h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.Wallet-module__btn--VSLTT {
  background-color: #1a9a94;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.Wallet-module__btn--VSLTT:hover {
  background-color: #158a84;
}

.Wallet-module__balanceSection--lmY8D {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.Wallet-module__balanceHeader--JwtfK {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.Wallet-module__balanceTitle--baMq6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333333;
}

.Wallet-module__balanceActions--hKDIh {
  display: flex;
  gap: 1rem;
}

.Wallet-module__addFundsBtn--BrARM {
  background-color: #1a9a94;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s;
}
.Wallet-module__addFundsBtn--BrARM:hover {
  background-color: #158a84;
}
.Wallet-module__addFundsBtn--BrARM:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.Wallet-module__balanceDisplay--WPIFz {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Wallet-module__currencyBadge--pswRC {
  background-color: #1a9a94;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.Wallet-module__balanceAmount--Gb1mW {
  font-size: 3rem;
  font-weight: 700;
  color: #1a9a94;
}

.Wallet-module__transactionSection--X89zN {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 154, 148, 0.1);
  position: relative;
}
.Wallet-module__transactionSection--X89zN::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a9a94 0%, #158a84 50%, #1a9a94 100%);
  border-radius: 16px 16px 0 0;
}

.Wallet-module__transactionHeader--uEY0R {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.Wallet-module__transactionTitle--oIo_X {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333333;
}

.Wallet-module__transactionInfo--T8vyR {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Wallet-module__searchContainer--tuy1n {
  position: relative;
}

.Wallet-module__searchInput--AIhdb {
  background-color: #ffffff;
  border: 2px solid #1a9a94;
  border-radius: 8px;
  padding: 12px 16px;
  color: #333333;
  font-size: 16px;
  width: 300px;
  transition: border-color 0.2s;
}
.Wallet-module__searchInput--AIhdb::placeholder {
  color: #1a9a94;
  opacity: 0.6;
}
.Wallet-module__searchInput--AIhdb:focus {
  outline: none;
  border-color: #1a9a94;
}

.Wallet-module__itemCount--YOaqG {
  color: #1a9a94;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.8;
}

.Wallet-module__tableWrapper--VqKTT {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  -webkit-overflow-scrolling: touch;
}
.Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar {
  height: 8px;
}
.Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar-track {
  background: rgba(26, 154, 148, 0.1);
  border-radius: 4px;
}
.Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #1a9a94, #158a84);
  border-radius: 4px;
}
.Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #158a84, #1a9a94);
}
.Wallet-module__tableWrapper--VqKTT:hover .Wallet-module__transactionTable--UiuFJ {
  transform: translateZ(0);
}

.Wallet-module__transactionTable--UiuFJ {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  width: 100%;
  min-width: 800px;
  transform: translateZ(0);
}
.Wallet-module__transactionTable--UiuFJ table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  table-layout: fixed;
}
.Wallet-module__transactionTable--UiuFJ table th, .Wallet-module__transactionTable--UiuFJ table td {
  box-sizing: border-box;
}
.Wallet-module__transactionTable--UiuFJ thead {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}
.Wallet-module__transactionTable--UiuFJ th {
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Wallet-module__transactionTable--UiuFJ th:nth-child(1) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ th:nth-child(2) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ th:nth-child(3) {
  width: 30%;
}
.Wallet-module__transactionTable--UiuFJ th:nth-child(4) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ th:nth-child(5) {
  width: 10%;
}
.Wallet-module__transactionTable--UiuFJ th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.Wallet-module__transactionTable--UiuFJ tbody tr {
  border-bottom: 1px solid rgba(26, 154, 148, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.Wallet-module__transactionTable--UiuFJ tbody tr:hover {
  background: linear-gradient(135deg, rgba(26, 154, 148, 0.05) 0%, rgba(26, 154, 148, 0.02) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 154, 148, 0.1);
}
.Wallet-module__transactionTable--UiuFJ tbody tr:last-child {
  border-bottom: none;
}
.Wallet-module__transactionTable--UiuFJ tbody tr:nth-child(even) {
  background-color: rgba(248, 249, 250, 0.5);
}
.Wallet-module__transactionTable--UiuFJ tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, rgba(26, 154, 148, 0.08) 0%, rgba(26, 154, 148, 0.03) 100%);
}
.Wallet-module__transactionTable--UiuFJ tbody td {
  padding: 16px;
  font-size: 14px;
  color: #333333;
  vertical-align: middle;
  border: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Wallet-module__transactionTable--UiuFJ tbody td:nth-child(1) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ tbody td:nth-child(2) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ tbody td:nth-child(3) {
  width: 30%;
}
.Wallet-module__transactionTable--UiuFJ tbody td:nth-child(4) {
  width: 20%;
}
.Wallet-module__transactionTable--UiuFJ tbody td:nth-child(5) {
  width: 10%;
}
.Wallet-module__transactionTable--UiuFJ tbody td:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(26, 154, 148, 0.08);
}

.Wallet-module__amountCell--gs6a7 {
  font-weight: 600;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  color: #1a9a94;
}
.Wallet-module__amountCell--gs6a7.Wallet-module__positive--F5VIg {
  color: #1a9a94;
}
.Wallet-module__amountCell--gs6a7.Wallet-module__negative--zgOhw {
  color: #dc3545;
}

.Wallet-module__statusBadge--exDS0 {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.Wallet-module__statusBadge--exDS0:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Wallet-module__statusCompleted--VjgE1 {
  background: linear-gradient(135deg, #1a9a94 0%, #1a9a94 100%);
  color: white;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.Wallet-module__statusFailed--j9pwe {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: white;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.Wallet-module__statusPending--lbwSB {
  background: linear-gradient(135deg, #ffc107 0%, #ffb84d 100%);
  color: #212529;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.Wallet-module__statusProcessing--vAot0 {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  color: white;
  border: 1px solid rgba(23, 162, 184, 0.3);
}

.Wallet-module__statusDefault--JEZJn {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  color: white;
  border: 1px solid rgba(26, 154, 148, 0.3);
}

.Wallet-module__modalOverlay--W6Czv {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.Wallet-module__modal--OvWxg {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.Wallet-module__modalTitle--RMPs_ {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #333333;
}

.Wallet-module__modalForm--dUmc2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Wallet-module__formGroup--fmLVT {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.Wallet-module__formLabel--orhE7 {
  color: #1a9a94;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.Wallet-module__formInput--q4GZW {
  background-color: #ffffff;
  border: 2px solid #1a9a94;
  border-radius: 8px;
  padding: 12px 16px;
  color: #333333;
  font-size: 16px;
  transition: border-color 0.2s;
}
.Wallet-module__formInput--q4GZW::placeholder {
  color: #1a9a94;
  opacity: 0.6;
}
.Wallet-module__formInput--q4GZW:focus {
  outline: none;
  border-color: #1a9a94;
}
.Wallet-module__formInput--q4GZW.Wallet-module__inputError--lOodW {
  border-color: #ff6b6b;
  opacity: 0.8;
}

.Wallet-module__errorTooltip--rOd_A {
  background-color: #ff6b6b;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-top: 4px;
  border: 1px solid #ff6b6b;
  opacity: 0.9;
}

.Wallet-module__generalError--F2vJH {
  background-color: #ff6b6b;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  opacity: 0.9;
}

.Wallet-module__modalActions--Sxuh4 {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.Wallet-module__cancelBtn--DrBPK {
  background-color: #ffffff !important;
  color: #1a9a94 !important;
  border: 2px solid #1a9a94 !important;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}
.Wallet-module__cancelBtn--DrBPK:hover {
  background-color: #1a9a94 !important;
  color: #ffffff !important;
  border-color: #1a9a94 !important;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: auto !important;
  }
  .Wallet-module__walletContainer--JLQA8 {
    padding: 1rem !important;
    background-color: #f0f8ff !important;
  }
  .Wallet-module__balanceSection--lmY8D {
    padding: 1.5rem !important;
  }
  .Wallet-module__balanceHeader--JwtfK {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .Wallet-module__balanceActions--hKDIh {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .Wallet-module__balanceAmount--Gb1mW {
    font-size: 2.5rem !important;
  }
  .Wallet-module__transactionSection--X89zN {
    padding: 1.5rem !important;
  }
  .Wallet-module__transactionHeader--uEY0R {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .Wallet-module__transactionInfo--T8vyR {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
  }
  .Wallet-module__searchInput--AIhdb {
    width: 100% !important;
  }
  .Wallet-module__itemCount--YOaqG {
    text-align: center !important;
  }
  .Wallet-module__tableWrapper--VqKTT {
    border-radius: 12px !important;
    transform: translateZ(0) !important;
  }
  .Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar {
    height: 6px !important;
  }
  .Wallet-module__transactionTable--UiuFJ {
    font-size: 12px !important;
    min-width: 700px !important;
  }
  .Wallet-module__transactionTable--UiuFJ table {
    table-layout: fixed !important;
  }
  .Wallet-module__transactionTable--UiuFJ th, .Wallet-module__transactionTable--UiuFJ td {
    box-sizing: border-box !important;
    width: auto !important;
  }
  .Wallet-module__transactionTable--UiuFJ th,
  .Wallet-module__transactionTable--UiuFJ td {
    padding: 12px 8px !important;
    font-size: 12px !important;
  }
  .Wallet-module__transactionTable--UiuFJ th {
    padding: 14px 8px !important;
  }
  .Wallet-module__modal--OvWxg {
    margin: 1rem !important;
    padding: 1.5rem !important;
    width: calc(100% - 2rem) !important;
  }
  .Wallet-module__modalActions--Sxuh4 {
    flex-direction: column !important;
  }
  .Wallet-module__cancelBtn--DrBPK,
  .Wallet-module__addFundsBtn--BrARM {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .Wallet-module__walletContainer--JLQA8 {
    padding: 0.5rem !important;
  }
  .Wallet-module__balanceSection--lmY8D {
    padding: 1rem !important;
  }
  .Wallet-module__balanceAmount--Gb1mW {
    font-size: 2rem !important;
  }
  .Wallet-module__currencyBadge--pswRC {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  .Wallet-module__transactionSection--X89zN {
    padding: 1rem !important;
  }
  .Wallet-module__transactionTitle--oIo_X {
    font-size: 1.25rem !important;
  }
  .Wallet-module__searchInput--AIhdb {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }
  .Wallet-module__tableWrapper--VqKTT {
    margin: 0 -0.5rem !important;
    border-radius: 0 !important;
    transform: translateZ(0) !important;
  }
  .Wallet-module__tableWrapper--VqKTT::-webkit-scrollbar {
    height: 4px !important;
  }
  .Wallet-module__transactionTable--UiuFJ {
    min-width: 600px !important;
  }
  .Wallet-module__transactionTable--UiuFJ table {
    table-layout: fixed !important;
  }
  .Wallet-module__transactionTable--UiuFJ th, .Wallet-module__transactionTable--UiuFJ td {
    box-sizing: border-box !important;
    width: auto !important;
  }
  .Wallet-module__transactionTable--UiuFJ th,
  .Wallet-module__transactionTable--UiuFJ td {
    padding: 10px 6px !important;
    font-size: 11px !important;
  }
  .Wallet-module__modal--OvWxg {
    margin: 0.5rem !important;
    padding: 1rem !important;
  }
  .Wallet-module__modalTitle--RMPs_ {
    font-size: 1.25rem !important;
  }
  .Wallet-module__formInput--q4GZW {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }
}
@media (max-width: 360px) {
  .Wallet-module__walletContainer--JLQA8 {
    padding: 0.25rem;
  }
  .Wallet-module__balanceSection--lmY8D,
  .Wallet-module__transactionSection--X89zN {
    padding: 0.75rem;
  }
  .Wallet-module__balanceAmount--Gb1mW {
    font-size: 1.75rem;
  }
  .Wallet-module__transactionTitle--oIo_X {
    font-size: 1.125rem;
  }
  .Wallet-module__searchInput--AIhdb {
    font-size: 13px;
    padding: 8px 10px;
  }
  .Wallet-module__transactionTable--UiuFJ {
    margin: 0 -0.25rem;
  }
  .Wallet-module__transactionTable--UiuFJ table {
    min-width: 550px;
  }
  .Wallet-module__transactionTable--UiuFJ th,
  .Wallet-module__transactionTable--UiuFJ td {
    padding: 8px 4px;
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .Wallet-module__walletContainer--JLQA8 {
    padding: 0.125rem;
  }
  .Wallet-module__balanceSection--lmY8D,
  .Wallet-module__transactionSection--X89zN {
    padding: 0.5rem;
  }
  .Wallet-module__transactionTable--UiuFJ {
    margin: 0 -0.125rem;
  }
  .Wallet-module__transactionTable--UiuFJ table {
    min-width: 500px;
  }
  .Wallet-module__transactionTable--UiuFJ th,
  .Wallet-module__transactionTable--UiuFJ td {
    padding: 6px 3px;
    font-size: 9px;
  }
  .Wallet-module__statusBadge--exDS0 {
    padding: 4px 8px;
    font-size: 9px;
    min-width: 60px;
  }
}
/*!*********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/Wallet.scss ***!
  \*********************************************************************************************************************************************************************************/
.rmp-wallet-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.rmp-wallet-container * {
  box-sizing: border-box;
}
.rmp-wallet-container button {
  font-family: inherit;
}
.rmp-wallet-container input:focus,
.rmp-wallet-container button:focus {
  outline: 2px solid #1a9a94;
  outline-offset: 2px;
}
.rmp-wallet-container .transactionTable .tableBody::-webkit-scrollbar {
  width: 8px;
}
.rmp-wallet-container .transactionTable .tableBody::-webkit-scrollbar-track {
  background: #f8f9fa;
}
.rmp-wallet-container .transactionTable .tableBody::-webkit-scrollbar-thumb {
  background: #1a9a94;
  border-radius: 4px;
}
.rmp-wallet-container .transactionTable .tableBody::-webkit-scrollbar-thumb:hover {
  background: #158a84;
}

@media print {
  .rmp-wallet-container .balanceActions,
  .rmp-wallet-container .searchContainer,
  .rmp-wallet-container .modalOverlay {
    display: none !important;
  }
  .rmp-wallet-container .walletContainer {
    background: white !important;
    color: black !important;
    padding: 1rem !important;
  }
  .rmp-wallet-container .balanceSection,
  .rmp-wallet-container .transactionSection {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    margin-bottom: 1rem !important;
  }
}
/*!********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/pagination.module.scss ***!
  \********************************************************************************************************************************************************************************************/
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationInfo--LYjII {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationInfo--LYjII {
    text-align: left;
    gap: 0.25rem;
  }
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageInfo--bdh4z {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__itemInfo--OrSFi {
  font-size: 0.875rem;
  color: #9ca3af;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationControls--Qnv9r {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageNumbers--Pe2nV {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 40px;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu:hover:not(.pagination-module__disabled--MDE_f) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu:active:not(.pagination-module__disabled--MDE_f) {
  background: #f3f4f6;
  transform: translateY(1px);
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu.pagination-module__disabled--MDE_f {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9fafb;
  color: #9ca3af;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu:hover:not(.pagination-module__disabled--MDE_f) svg {
  transform: scale(1.1);
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__prevButton--pssKl .pagination-module__chevronLeft--voPE7 {
  order: -1;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__nextButton--e4xFe .pagination-module__chevronRight--dWLnG {
  order: 1;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ:hover:not(.pagination-module__active--pzP9A) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ:active:not(.pagination-module__active--pzP9A) {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ.pagination-module__active--pzP9A {
  background: #158a84;
  border-color: #158a84;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ.pagination-module__active--pzP9A:hover {
  background: #158a84;
  border-color: #158a84;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__ellipsis--Gw1aJ {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: #9ca3af;
  font-weight: 500;
  user-select: none;
}
@media (max-width: 640px) {
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv {
    padding: 0.75rem;
    margin: 1rem 0;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationControls--Qnv9r {
    gap: 0.25rem;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-height: 36px;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu span {
    display: none;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ {
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__ellipsis--Gw1aJ {
    min-width: 36px;
    height: 36px;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationInfo--LYjII {
    font-size: 0.8rem;
  }
}
@media (prefers-color-scheme: dark) {
  .pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv {
    background: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu,
  .pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ {
    background: #374151;
    border-color: #4b5563;
    color: #d1d5db;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu:hover:not(.pagination-module__disabled--MDE_f),
  .pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ:hover:not(.pagination-module__disabled--MDE_f) {
    background: #4b5563;
    border-color: #6b7280;
    color: #f9fafb;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu.pagination-module__active--pzP9A,
  .pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ.pagination-module__active--pzP9A {
    background: #158a84;
    border-color: #158a84;
    color: #ffffff;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__pageInfo--bdh4z {
    color: #d1d5db;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__itemInfo--OrSFi {
    color: #9ca3af;
  }
  .pagination-module__gibbsPagination--iiZsU .pagination-module__ellipsis--Gw1aJ {
    color: #6b7280;
  }
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__navButton--lpOiu:focus,
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ:focus {
  outline: 2px solid #158a84;
  outline-offset: 2px;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv.pagination-module__loading--yCwvN {
  opacity: 0.7;
  pointer-events: none;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv.pagination-module__loading--yCwvN .pagination-module__navButton--lpOiu,
.pagination-module__gibbsPagination--iiZsU .pagination-module__paginationContainer--phXDv.pagination-module__loading--yCwvN .pagination-module__pageButton--phnrQ {
  cursor: not-allowed;
}
.pagination-module__gibbsPagination--iiZsU .pagination-module__pageButton--phnrQ {
  animation: pagination-module__fadeIn--vjEW4 0.2s ease-in-out;
}
@keyframes pagination-module__fadeIn--vjEW4 {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*!****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/smsLog.module.scss ***!
  \****************************************************************************************************************************************************************************************/
:root {
  --smslog-padding: 2rem;
  --table-font-size: 14px;
  --table-padding: 16px;
}

* {
  box-sizing: border-box;
}

.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogContainer--znRFZ {
  max-width: 100vw;
  overflow-x: hidden;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogContainer--znRFZ {
  background-color: #ffffff;
  color: #333333;
  min-height: 100vh;
  padding: var(--smslog-padding);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__loading--lTjPA, .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__error--SQKCr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__spinner--ufO8K {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #1a9a94;
  border-radius: 50%;
  animation: smsLog-module__spin--FywWr 1s linear infinite;
  margin-bottom: 1rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__spinnerSmall--ZdTaQ {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: smsLog-module__spin--FywWr 1s linear infinite;
  margin-right: 8px;
}
@keyframes smsLog-module__spin--FywWr {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__error--SQKCr h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__btn--qICMe {
  background-color: #1a9a94;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__btn--qICMe:hover {
  background-color: #158a84;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogSection--eq5ak {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 154, 148, 0.1);
  position: relative;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogSection--eq5ak::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a9a94 0%, #158a84 50%, #1a9a94 100%);
  border-radius: 16px 16px 0 0;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogHeader--mZgv0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTitle--kN9fV {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333333;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogInfo--NrvB1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchContainer--oOJpX {
  position: relative;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchInput--hjRR1 {
  background-color: #ffffff;
  border: 2px solid #1a9a94;
  border-radius: 8px;
  padding: 12px 16px;
  color: #333333;
  font-size: 16px;
  width: 300px;
  transition: border-color 0.2s;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchInput--hjRR1::placeholder {
  color: #1a9a94;
  opacity: 0.6;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchInput--hjRR1:focus {
  outline: none;
  border-color: #1a9a94;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__itemCount--blIDQ {
  color: #1a9a94;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.8;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  -webkit-overflow-scrolling: touch;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg::-webkit-scrollbar {
  height: 8px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg::-webkit-scrollbar-track {
  background: rgba(26, 154, 148, 0.1);
  border-radius: 4px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #1a9a94, #158a84);
  border-radius: 4px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #158a84, #1a9a94);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg:hover .smsLog-module__smsLogTable--Li23a {
  transform: translateZ(0);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableLoading--ZdxU8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  padding: 2rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableLoading--ZdxU8 .smsLog-module__spinnerSmall--ZdTaQ {
  width: 24px;
  height: 24px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #1a9a94;
  border-radius: 50%;
  animation: smsLog-module__spin--FywWr 1s linear infinite;
  margin-bottom: 1rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableLoading--ZdxU8 p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  width: 100%;
  min-width: 800px;
  transform: translateZ(0);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  table-layout: fixed;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a table th, .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a table td {
  box-sizing: border-box;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a thead {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th {
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(1) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(2) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(3) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(4) {
  width: 30%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(5) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:nth-child(6) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody tr {
  border-bottom: 1px solid rgba(26, 154, 148, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody tr:hover {
  background: linear-gradient(135deg, rgba(26, 154, 148, 0.05) 0%, rgba(26, 154, 148, 0.02) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 154, 148, 0.1);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody tr:last-child {
  border-bottom: none;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody tr:nth-child(even) {
  background-color: rgba(248, 249, 250, 0.5);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, rgba(26, 154, 148, 0.08) 0%, rgba(26, 154, 148, 0.03) 100%);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td {
  padding: 16px;
  font-size: 14px;
  color: #333333;
  vertical-align: middle;
  border: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(1) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(2) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(3) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(4) {
  width: 30%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(5) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:nth-child(6) {
  width: 10%;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a tbody td:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(26, 154, 148, 0.08);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__messageCell--FCe2Z .smsLog-module__messageText--CWOfl {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.4;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__messageCell--FCe2Z .smsLog-module__showMoreBtn--KbVl3 {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(26, 154, 148, 0.2);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__messageCell--FCe2Z .smsLog-module__showMoreBtn--KbVl3:hover {
  background: linear-gradient(135deg, #158a84 0%, #1a9a94 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 154, 148, 0.3);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__messageCell--FCe2Z .smsLog-module__showMoreBtn--KbVl3:active {
  transform: translateY(0);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn p {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.6;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageContent--Poh6d {
  margin-bottom: 1.5rem;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageContent--Poh6d h4 {
  margin: 0 0 0.5rem 0;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageContent--Poh6d p {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #1a9a94;
  margin: 0;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageDetails--uSXMN {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(26, 154, 148, 0.1);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageDetails--uSXMN .smsLog-module__detailRow--Qi0uY {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 154, 148, 0.1);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageDetails--uSXMN .smsLog-module__detailRow--Qi0uY:last-child {
  border-bottom: none;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageDetails--uSXMN .smsLog-module__detailRow--Qi0uY .smsLog-module__detailLabel--amLDS {
  font-weight: 500;
  color: #6c757d;
  font-size: 14px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__popupBody--XBPQn .smsLog-module__messageInfo--_rERE .smsLog-module__messageDetails--uSXMN .smsLog-module__detailRow--Qi0uY .smsLog-module__detailValue--hbYLU {
  font-weight: 600;
  color: #1a9a94;
  font-size: 14px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__priceCell--Z3vfv {
  text-align: center;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__priceCell--Z3vfv .smsLog-module__priceBadge--W8ILo {
  display: block;
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(26, 154, 148, 0.2);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__priceCell--Z3vfv .smsLog-module__smsCount--uk1pO {
  display: block;
  color: #6c757d;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusBadge--X5YM_ {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusBadge--X5YM_:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusCompleted--P7_65 {
  background: linear-gradient(135deg, #1a9a94 0%, #1a9a94 100%);
  color: white;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusFailed--lNqlV {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: white;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusPending--jofWQ {
  background: linear-gradient(135deg, #ffc107 0%, #ffb84d 100%);
  color: #212529;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.smsLog-module__smsLogWrapper--sVFcm .smsLog-module__statusDefault--sHAJd {
  background: linear-gradient(135deg, #1a9a94 0%, #158a84 100%);
  color: white;
  border: 1px solid rgba(26, 154, 148, 0.3);
}
@media (max-width: 768px) {
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogContainer--znRFZ {
    padding: 1rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogSection--eq5ak {
    padding: 1rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogHeader--mZgv0 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchInput--hjRR1 {
    width: 100%;
    max-width: 300px;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__tableWrapper--cF5eg {
    margin-top: 0.5rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a {
    min-width: 600px;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a th, .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTable--Li23a td {
    padding: 12px 8px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogContainer--znRFZ {
    padding: 0.5rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogSection--eq5ak {
    padding: 0.5rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__smsLogTitle--kN9fV {
    font-size: 1.25rem;
  }
  .smsLog-module__smsLogWrapper--sVFcm .smsLog-module__searchInput--hjRR1 {
    font-size: 14px;
    padding: 10px 12px;
  }
}
/*!*********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/js/assets/scss/smsLog.scss ***!
  \*********************************************************************************************************************************************************************************/
.smsLogWrapper .sms-log {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
}
.smsLogWrapper .sms-log-text {
  color: #333333;
}
.smsLogWrapper .sms-log-text-muted {
  color: #6c757d;
}
.smsLogWrapper .sms-log-text-primary {
  color: #1a9a94;
}
.smsLogWrapper .sms-log-text-success {
  color: #28a745;
}
.smsLogWrapper .sms-log-text-warning {
  color: #ffc107;
}
.smsLogWrapper .sms-log-text-danger {
  color: #dc3545;
}
.smsLogWrapper .sms-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.smsLogWrapper .sms-status-sent {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.smsLogWrapper .sms-status-delivered {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.smsLogWrapper .sms-status-failed {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.smsLogWrapper .sms-status-pending {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.smsLogWrapper .phone-number {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Courier New", monospace;
  color: #1a9a94;
  font-weight: 500;
}
.smsLogWrapper .message-preview {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #495057;
}
.smsLogWrapper .sms-cost {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Courier New", monospace;
  font-weight: 600;
  color: #1a9a94;
}
@media (max-width: 768px) {
  .smsLogWrapper .sms-log {
    font-size: 14px;
  }
  .smsLogWrapper .message-preview {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .smsLogWrapper .sms-log {
    font-size: 13px;
  }
  .smsLogWrapper .message-preview {
    max-width: 150px;
  }
}

/*# sourceMappingURL=wallet.css.map*/