/* Import the Poppins font family for all text */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2b2c35, #121212);
}

/* Container Frame */
.frame {
  width: 100vw;
  min-height: 100vh;
  overflow-y: auto;
  border: 3px solid transparent;
  border-radius: 28px;
  box-shadow: 0 0 32px 4px rgba(192,192,255,0.18), 0 4px 32px rgba(0,0,0,0.18);
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  transform: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-image: repeating-linear-gradient(135deg, #e0e0e0 0 12px, #b0b0b0 12px 24px, #e0e0e0 24px 36px, #00f6ff 36px 48px, #e0e0e0 48px 60px) 30;
  border-image-slice: 1;
  border-image-width: 3px;
  border-image-outset: 0;
}

/* Landing Page */
#landing-page {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Swiper Styles (unchanged to preserve functionality) */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  position: relative;
}

/* -------------------------------- */
/* Shared Button & Input Styles     */
/* -------------------------------- */

/* Shared button styles */
.button,
.styled-button,
.profile-button,
.settings-button,
.delete-button,
.create-tx-button,
.dialog button {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  /* Add a nice transition + slight scaling on active */
  transition: background-color 0.3s, transform 0.1s;
}

/* Hover/active states */
.button:hover,
.styled-button:hover,
.profile-button:hover,
.settings-button:hover,
.delete-button:hover,
.mint-button:hover,
.create-tx-button:hover,
.dialog button:hover {
  background-color: #1b1b1b;
}

.button:active,
.styled-button:active,
.profile-button:active,
.settings-button:active,
.delete-button:active,
.create-tx-button:active,
.dialog button:active {
  transform: scale(0.98);
}

/* Delete Button in red */
.delete-button {
  background-color: red;
}

/* Styled inputs and textareas */
.styled-input,
.tx-hex-container textarea,
.dialog input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: rgb(26, 26, 26);
  color: white;
  font-size: 16px;
  font-weight: bold;
  /* Remove number input spinners */
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  max-width: 300px;
}

/* Specifically target number inputs */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Handle autofill color */
.styled-input:-webkit-autofill,
.styled-input:-webkit-autofill:hover,
.styled-input:-webkit-autofill:focus,
.styled-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px black inset !important;
  -webkit-text-fill-color: white !important;
}

/* -------------------------------- */
/* Header & Icons                   */
/* -------------------------------- */

/* Header with settings button and male silhouette */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 30px;
  margin-top: 15px;
  box-sizing: border-box;
}

.header img,
.profile-button img,
.settings-button img {
  width: 32px;
  height: 32px;
}

.back-button,
.settings-button {
  background: transparent;
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: box-shadow 0.18s, background 0.18s, transform 0.12s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  outline: none;
  position: relative;
}

.back-button img,
.settings-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  pointer-events: none;
}

.back-button:hover, .settings-button:hover, .back-button:focus, .settings-button:focus {
  background: rgba(0,0,0,0.10);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.08);
  cursor: pointer;
}

.back-button:active, .settings-button:active {
  background: rgba(0,0,0,0.18);
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .back-button, .settings-button {
    width: 38px;
    height: 38px;
  }
  .back-button img, .settings-button img {
    width: 26px;
    height: 26px;
  }
}

/* -------------------------------- */
/* Wallet Selector                  */
/* -------------------------------- */

.wallet-selector {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-align-last: center;
  background-color: #111;
  color: #fff;
  border: none;
  padding: 18px 0 18px 0;
  border-radius: 14px;
  width: 90%;
  max-width: 340px;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  letter-spacing: 0.01em;
}

/* -------------------------------- */
/* Common Containers                */
/* -------------------------------- */

.wallet-info-container,
.tx-form-container,
.receive-container,
.transaction-history,
.dialog {
  margin: 20px auto;
  padding: 20px;
  background-color: black;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 300px;
  text-align: center;
}

/* Dialog */
.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/* Ensure tx-dialog modals are centered by overlay grid, not by fixed+transform */
.tx-dialog {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

.dialog-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dialog-title {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.styled-text {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  padding: 10px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: monospace;
  letter-spacing: 1px;
  max-width: 250px;
}

.styled-button {
  width: 100%;
  padding: 12px;
  margin: 0;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s;
}

.styled-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.styled-button:disabled {
  background: #44ff44;
  color: #000;
  cursor: default;
}

.styled-button.error {
  background: #ff4444;
  color: white;
}

/* -------------------------------- */
/* QR Code Styling                  */
/* -------------------------------- */
.qr-code {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vw;
  box-sizing: border-box;
}

.qr-modal-region {
  padding: 12px;
}

.qr-coin-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  max-width: 20vw;
  max-height: 20vw;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

/* -------------------------------- */
/* Fee Slider Styles                */
/* -------------------------------- */
.fee-slider-container {
  width: 100%;
  padding: 5px 0;
}

.styled-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  background: transparent;
  outline: none;
  margin: 10px 0;
  cursor: pointer;
  position: relative;
}

/* Thumb styles - removed hover/active transformations */
.styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid #1a1a1a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.styled-slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid #1a1a1a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  margin-top: 0;
  position: relative;
  z-index: 2;
}

/* Track styles */
.styled-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 40px;
  cursor: pointer;
  background: #1a1a1a;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.styled-slider::-moz-range-track {
  width: 100%;
  height: 40px;
  cursor: pointer;
  background: #1a1a1a;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

/* Remove active state transformations */
.styled-slider:active::-webkit-slider-thumb {
  background: white;
}

.styled-slider:active::-moz-range-thumb {
  background: white;
}

/* Mobile-specific adjustments */
@media (max-width: 428px) {
  .styled-slider {
    height: 50px; /* Larger on mobile */
  }
  
  .styled-slider::-webkit-slider-thumb {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  
  .styled-slider::-moz-range-thumb {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  
  .styled-slider::-webkit-slider-runnable-track {
    height: 50px;
    border-radius: 25px;
  }
  
  .styled-slider::-moz-range-track {
    height: 50px;
    border-radius: 25px;
  }
}

/* Fee label styles */
.fee-label {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

#feeDisplay {
  font-weight: bold;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  min-width: 80px;
  display: inline-block;
  text-align: center;
}

/* Fee container spacing */
.fee-container {
  margin: 10px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* -------------------------------- */
/* Stacked Buttons                  */
/* -------------------------------- */
.stacked-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 380px;
  margin: 38px auto 0 auto;
}

.stacked-buttons .styled-button {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 14px;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: none;
  padding: 18px 0;
  margin: 0;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
}
.stacked-buttons .styled-button:hover, .stacked-buttons .styled-button:focus {
  background: #222;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.stacked-buttons .styled-button:active {
  transform: scale(0.98);
}

.page-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 38px auto 28px auto;
  text-align: center;
  color: #fff;
  letter-spacing: 0.01em;
}

/* Coin Icon, Balance & Buttons */
.coin-icon {
  width: 180px;
  height: 180px;
  margin: 18px auto 24px auto;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.balance {
  width: 90%;
  background-color: #111;
  border-radius: 14px;
  color: #fff;
  margin: 0 auto 12px auto;
  text-align: center;
  max-width: 340px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 18px 0 18px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.price-display {
  font-size: 1rem;
  color: #e0e0e0;
  margin-top: 4px;
  margin-bottom: 18px;
  font-weight: 400;
  opacity: 0.85;
}

.buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  width: 100%;
  margin: 18px auto 0 auto;
  max-width: 380px;
  margin-bottom: 24px;
}

.button {
  flex: 1;
  padding: 18px 0;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 14px;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
}
.button:hover, .button:focus {
  background: #222;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.button:active {
  transform: scale(0.98);
}

/* Transaction History */
.transaction-history {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-width: 260px;
  min-height: 180px;
  max-height: 320px;
  background-color: black;
  border-radius: 20px;
  margin: 24px auto 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 12px 12px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.transaction-history::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.transaction-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 10px 0;
  padding: 12px 8px 8px 8px;
  font-size: 1.05em;
  box-sizing: border-box;
}

.tx-row, .tx-meta, .tx-id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.tx-amount, .tx-direction, .tx-time, .tx-conf, .txid-short, .txid-full {
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.txid-short, .txid-full {
  display: inline-block;
}

/* Styled Button */
.styled-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  width: 90%;
  max-width: 300px;
  margin: 10px auto;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: block;
}

.styled-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.styled-button:active {
  transform: scale(0.98);
}

/* -------------------------------- */
/* Responsive Styles                */
/* -------------------------------- */

/* Very small devices (< 320px) */
@media screen and (max-width: 320px) {
  .frame {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .styled-button {
    max-width: 220px;
    font-size: 12px;
  }
  .wallet-selector {
    max-width: 220px;
    font-size: 12px;
  }
  .swiper-slide {
    font-size: 16px;
  }
  .page-title {
    font-size: 20px;
  }
}

/* Up to 375px wide */
@media (max-width: 375px) {
  .swiper-slide {
    font-size: 18px;
  }
  .dialog {
    padding: 15px;
  }
  .header img {
    width: 28px;
    height: 28px;
  }
}

/* Up to 393px wide */
@media screen and (max-width: 393px) {
  .frame {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .styled-button {
    max-width: 250px;
    font-size: 14px;
  }
  .wallet-selector {
    max-width: 250px;
    font-size: 14px;
  }
}

/* Up to 414px wide */
@media (max-width: 414px) {
  .frame {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}

/* Up to 852px height (landscape) */
@media screen and (max-height: 852px) {
  .frame {
    height: 100vh;
  }
}

/* Tablets (>= 768px) */
@media screen and (min-width: 768px) {
  .frame {
    width: 1000px;
    height: 2500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 00px;
  }
}

/* Laptops/Desktops (>= 1024px) */
@media screen and (min-width: 1024px) {
  .frame {
    width: 1000px;
    height: 700px;
    border: none;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Extra large screens (>= 1440px) */
@media screen and (min-width: 1440px) {
  .frame {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* -------------------------------- */
/* Add Wallet Specific Styles       */
/* -------------------------------- */

.wallet-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 38px auto 0 auto;
  gap: 22px;
  background: none;
  min-height: 420px;
  box-sizing: border-box;
}

.styled-input {
  width: 100%;
  padding: 18px 16px;
  border-radius: 14px;
  border: none;
  background-color: #fff2;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin: 0;
  outline: none;
  transition: box-shadow 0.18s, background 0.18s;
}
.styled-input:focus {
  background: #fff4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.styled-button {
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 14px;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: none;
  padding: 18px 0;
  margin: 0;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
}
.styled-button:hover, .styled-button:focus {
  background: #222;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.styled-button:active {
  transform: scale(0.98);
}

.warning-text {
  text-align: center;
  color: #fff;
  margin: 24px auto 0 auto;
  width: 100%;
  max-width: 380px;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.92;
}

.info-text {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 340px;
  opacity: 0.85;
}

.coin-icon {
  width: 180px;
  height: 180px;
  margin: 18px auto 24px auto;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 480px) {
  .wallet-form {
    max-width: 98vw;
    gap: 14px;
    margin-top: 18px;
    min-height: 320px;
  }
  .styled-input {
    font-size: 1rem;
    padding: 12px 10px;
    border-radius: 10px;
  }
  .styled-button {
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 10px;
  }
  .warning-text {
    font-size: 1rem;
    margin-top: 14px;
  }
  .info-text {
    font-size: 0.95rem;
  }
  .coin-icon {
    width: 110px;
    height: 110px;
    margin-top: 8px;
    margin-bottom: 18px;
  }
}

/* Ensure the page never cuts off content */
body, html, #landing-page {
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
}

/* -------------------------------- */
/* Inscriber Specific Styles        */
/* -------------------------------- */

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: black;
  border-radius: 0px;
}

.styled-text {
  width: 90%;
  max-width: 300px;
  text-align: center;
  color: white;
  margin: 10px auto;
  font-family: 'Poppins', sans-serif;
}

/* File input hidden style */
.hidden-input {
  display: none;
}

.file-container {
  width: 90%;
  max-width: 400px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scrollable-iframe {
  width: 90%;
  max-width: 400px;
  height: 550px;
  border: none;
  border-radius: 10px;
  overflow: auto;
  background-color: black;
  margin: 10px auto;
}

/* Receive Container */
.receive-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  position: relative;
}

.qr-code {
  width: 325px;
  height: 325px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.qr-coin-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
}

/* Address input for receiving */
.address-input {
  width: 90%;
  max-width: 300px;
  padding: 12px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}

/* Checkbox Container */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px auto;
  width: 45%; /* Adjust width for two columns */
  color: white;
  background-color: transparent;
}

.styled-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ffffff;
  /* iOS specific styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 4px;
  position: relative;
}

.styled-checkbox:checked {
  background-color: white;
}

.styled-checkbox:checked::after {
  content: '✓';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 14px;
}

/* Error Messages */
.error-message {
  color: #ff4444;
  text-align: center;
  margin: 10px auto;
  display: none;
}

/* Wallet Form */
.wallet-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* Ensure all text-based elements use the Poppins font */
.button,
.styled-button,
.profile-button,
.settings-button,
.delete-button,
.create-tx-button,
.dialog button,
.styled-input,
.tx-hex-container textarea,
.dialog input[type="text"],
.wallet-selector,
.page-title,
.warning-text,
.info-text,
.styled-text,
.address-input,
.checkbox-container,
.fee-label,
.error-message,
.transaction,
.balance,
.swiper-slide {
  font-family: 'Poppins', sans-serif;
}

/* Update the media queries for mobile devices */
@media screen and (max-width: 428px) {
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .frame {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    border-width: 1.5px;
    border-radius: 8px;
    box-shadow: 0 0 8px 1px rgba(192,192,255,0.18), 0 1px 8px rgba(0,0,0,0.18);
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    background-color: #000;
    border-image-width: 1.5px;
  }
}

/* Add specific media query for iPhone 16 Pro Max */
@media screen and (width: 1320px) and (height: 2868px),
       screen and (width: 430px) and (height: 932px),
       screen and (device-width: 430px) and (device-height: 932px) {
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .frame {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    border-width: 2px;
    border-radius: 16px;
    box-shadow: 0 0 16px 2px rgba(192,192,255,0.18), 0 2px 16px rgba(0,0,0,0.18);
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    background-color: #000;
    border-image-width: 2px;
  }
}

/* Specifically target iPhone notch devices */
@supports (padding-top: env(safe-area-inset-top)) {
  .frame {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    border: none;
    margin: 0;
  }
}

/* Pull to refresh indicator */
.pull-refresh-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: white;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

/* Remove all max-width and max-height constraints */
@media screen and (max-width: 428px),
       screen and (max-width: 852px),
       screen and (min-width: 768px),
       screen and (min-width: 1024px),
       screen and (min-width: 1440px) {
  .frame {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    border-width: 1.5px;
    border-radius: 8px;
    box-shadow: 0 0 8px 1px rgba(192,192,255,0.18), 0 1px 8px rgba(0,0,0,0.18);
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    border-image-width: 1.5px;
  }
}

.image-container {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.compressed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.progress-display {
    margin: 5px 0;
    text-align: center;
    color: white;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Center all buttons and dropdowns */
.styled-button,
.wallet-selector {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 300px;
}

.vertical-slider {
    -webkit-appearance: none;
    appearance: none;
    transform: rotate(270deg);
    width: 175px;
    height: 40px;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: absolute;
}

/* Thumb styles */
.vertical-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.vertical-slider::-moz-range-thumb {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Track styles */
.vertical-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 40px;
    cursor: pointer;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.vertical-slider::-moz-range-track {
    width: 100%;
    height: 40px;
    cursor: pointer;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 428px) {
    .vertical-slider {
        height: 50px;
    }
    
    .vertical-slider::-webkit-slider-thumb {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    
    .vertical-slider::-moz-range-thumb {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    
    .vertical-slider::-webkit-slider-runnable-track {
        height: 50px;
        border-radius: 25px;
    }
    
    .vertical-slider::-moz-range-track {
        height: 50px;
        border-radius: 25px;
    }
}

.slider-label {
    position: absolute;
    font-size: 16px;
    color: white;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.input-margin {
    margin: 10px auto;
    display: block;
}

/* Media query for iPhone SE and smaller screens */
@media screen and (max-width: 750px) and (max-height: 1334px) {
  .your-element-class {
    margin-top: calc(var(--original-margin-top) * 0.25);
    margin-bottom: calc(var(--original-margin-bottom) * 0.25);
  }
}

.balance-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  margin: 10px 0; /* Add some margin for spacing */
}

.balance {
  font-size: 1em; /* Adjust as needed */
  text-align: center;
}

.price-display {
  font-size: 0.5em; /* Half the size of the balance text */
  text-align: center;
  margin-top: 5px; /* Add some space between balance and price */
}

.usd-amount-container {
    display: flex;
    align-items: center;
}

.usd-label {
    margin-right: 5px;
    font-size: 1em;
    color: white; /* Adjust color as needed */
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2b2c35, #121212);
    font-family: 'Poppins', sans-serif;
}

.container {
    text-align: center;
    color: white;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wallet-button, .github-button {
    background-color: black;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 10px; /* Add margin for spacing */
}

.wallet-button:hover, .github-button:hover {
    background-color: #1a1a1a;
    transform: scale(1.05);
}

.wallet-button:active, .github-button:active {
    transform: scale(0.98);
}

.explorer-button {
    background-color: black;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 10px; /* Add margin for spacing */
}

.explorer-button:hover {
    background-color: #1a1a1a;
    transform: scale(1.05);
}

.explorer-button:active {
    transform: scale(0.98);
}

/* Add this to your existing CSS file */
.checkbox-group {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap into the next line */
    justify-content: space-between; /* Space out the columns */
    width: 100%; /* Full width for the group */
}

/* Button Row Container */
.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px; /* space between buttons */
  margin: 20px 0 10px 0;
}

/* Main Buttons (Send, Receive, Mint) */
.main-action-button {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  outline: none;
  min-width: 110px;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-action-button:hover,
.main-action-button:focus {
  background: #222;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.main-action-button:active {
  transform: scale(0.98);
}

/* Responsive for mobile */
@media (max-width: 500px) {
  .button-row {
    gap: 10px;
  }
  .main-action-button {
    font-size: 1em;
    padding: 14px 0;
    min-width: 80px;
  }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- QR Scanner Modal Enhancements --- */
.qr-modal-overlay {
  animation: fadeIn 0.2s;
}
.qr-modal-box {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border: 1px solid #333;
  background: #181818;
  transition: box-shadow 0.2s;
}
@keyframes qr-scan-pulse {
  0% { box-shadow: 0 0 0 0 #44ff44; }
  100% { box-shadow: 0 0 16px 4px #44ff4444; }
}
.qr-scanner-box {
  border: 3px solid #44ff44;
  animation: qr-scan-pulse 1.2s infinite alternate;
}
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg);}
  100% { transform: translate(-50%, -50%) rotate(360deg);}
}
.qr-modal-box button,
.qr-modal-box .qr-paste-btn,
.qr-modal-box .qr-modal-cancel {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  margin: 8px 0 0 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qr-modal-box button:hover,
.qr-modal-box .qr-paste-btn:hover,
.qr-modal-box .qr-modal-cancel:hover {
  background: #44ff44;
  color: #181818;
}
.qr-scan-success {
  animation: popIn 0.3s;
}
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.qr-error-message {
  color: #ff4444;
  font-weight: 600;
  margin-top: 10px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* --- End QR Scanner Modal Enhancements --- */

/* --- Swipe Signifiers --- */
.swipe-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.35;
  z-index: 2000;
  pointer-events: auto;
  user-select: auto;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.swipe-arrow:active, .swipe-arrow:focus {
  opacity: 0.7;
  background: rgba(68,255,68,0.18);
  outline: 2px solid #44ff44;
}
.swipe-arrow-left {
  left: 2vw;
}
.swipe-arrow-right {
  right: 2vw;
}
.swiper-slide:hover .swipe-arrow {
  opacity: 0.6;
  transform: translateY(-50%) scale(1.08);
}
.swipe-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 22px;
  border-radius: 18px;
  font-size: 1.05rem;
  opacity: 1;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.5s;
  text-align: center;
}

/* --- Enhanced Transaction Card Styles --- */
.transaction-card {
  background: #18181b;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  margin: 16px 0;
  padding: 18px 18px 12px 18px;
  transition: box-shadow 0.18s, transform 0.12s;
  border: 1px solid #23232a;
  cursor: pointer;
  min-width: 0;
}
.transaction-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transform: translateY(-2px) scale(1.01);
}
.tx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}
.tx-meta {
  font-size: 0.95em;
  color: #aaa;
  margin-bottom: 2px;
}
.tx-amount {
  font-size: 1.15em;
  font-weight: bold;
  margin: 0 8px;
}
.tx-direction {
  font-size: 1em;
  font-weight: 500;
  opacity: 0.85;
}
.tx-time {
  font-size: 0.95em;
  color: #bbb;
}
.tx-conf {
  font-size: 0.95em;
  padding: 2px 8px;
  border-radius: 8px;
  background: #23232a;
  color: #fff;
  margin-left: 8px;
}
.tx-conf.confirmed {
  background: #44ff44;
  color: #000;
}
.tx-conf.unconfirmed {
  background: #ff4444;
  color: #fff;
}
.tx-id-row {
  font-size: 0.93em;
  color: #888;
  margin-top: 2px;
  gap: 8px;
}
.txid-short {
  font-family: monospace;
  background: #23232a;
  padding: 2px 8px;
  border-radius: 8px;
  margin-right: 8px;
}
.txid-copy-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.15s;
}
.txid-copy-btn:hover {
  background: #222;
  color: #fff;
}
/* Modal details */
.tx-dialog {
  min-width: 320px;
  max-width: 95vw;
  padding: 24px 18px 18px 18px;
}
.tx-detail-row {
  margin: 10px 0;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-all;
}
.txid-full {
  font-family: monospace;
  background: #23232a;
  padding: 2px 8px;
  border-radius: 8px;
  margin-right: 8px;
  font-size: 0.98em;
}
.txid-copy-btn-modal {
  margin-left: 6px;
  font-size: 0.98em;
  padding: 4px 12px;
}
.dialog-close-btn {
  margin-top: 18px;
}
@media (max-width: 480px) {
  .transaction-card {
    padding: 10px 2vw 6px 2vw;
    font-size: 0.97em;
    margin: 10px 0;
    min-width: 0;
    word-break: break-word;
  }
  .tx-row, .tx-meta, .tx-id-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }
  .tx-amount {
    font-size: 1.05em;
    margin: 2px 0;
  }
  .tx-direction, .tx-time, .tx-conf {
    font-size: 0.98em;
  }
  .txid-short {
    font-size: 0.97em;
    padding: 2px 4px;
  }
  .txid-copy-btn {
    font-size: 1em;
    padding: 2px 6px;
  }
  .tx-dialog {
    min-width: 0;
    max-width: 98vw;
    padding: 10px 2vw 8px 2vw;
    font-size: 0.98em;
    word-break: break-word;
  }
  .tx-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 1em;
    width: 100%;
    word-break: break-all;
  }
  .txid-full {
    font-size: 0.97em;
    padding: 2px 4px;
    word-break: break-all;
    max-width: 90vw;
    display: inline-block;
  }
  .txid-copy-btn-modal {
    font-size: 0.97em;
    padding: 4px 10px;
    margin-top: 4px;
  }
  .dialog-close-btn {
    margin-top: 12px;
    font-size: 1em;
    padding: 10px 0;
  }
}
@media (max-width: 375px) {
  .transaction-card {
    font-size: 0.93em;
    padding: 8px 1vw 4px 1vw;
  }
  .tx-dialog {
    font-size: 0.93em;
    padding: 8px 1vw 6px 1vw;
  }
  .txid-full {
    font-size: 0.93em;
    max-width: 80vw;
  }
}
@media (max-width: 600px) {
  .swipe-arrow {
    top: 44%;
    font-size: 2.5rem;
    z-index: 200;
  }
  .swipe-arrow-left {
    left: 2vw !important;
  }
  .swipe-arrow-right {
    right: 2vw !important;
  }
  .swiper-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .transaction-history {
    width: 96vw;
    min-width: 0;
    max-width: 99vw;
    min-height: 35vh;
    max-height: 48vh;
    margin: 0 auto;
    border-radius: 28px;
    padding: 18px 3vw 12px 3vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .transaction-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0;
    padding: 12px 8px 8px 8px;
    font-size: 1.05em;
    box-sizing: border-box;
  }
}

/* --- Unified Font Stack --- */
body, html {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6, .page-title, .faucet-title, .block-title, .ord-title {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* --- Unified Button Styles --- */
.styled-button, .button, .wallet-button, .github-button, .explorer-button, .main-action-button, .back-btn {
  background: linear-gradient(135deg, #23232a, #18181b);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  outline: none;
  display: inline-block;
}
.styled-button:hover, .button:hover, .wallet-button:hover, .github-button:hover, .explorer-button:hover, .main-action-button:hover, .back-btn:hover {
  background: linear-gradient(135deg, #2c2c33, #23232a);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.04);
}
.styled-button:active, .button:active, .wallet-button:active, .github-button:active, .explorer-button:active, .main-action-button:active, .back-btn:active {
  background: #18181b;
  transform: scale(0.98);
}
.styled-button:focus, .button:focus, .wallet-button:focus, .github-button:focus, .explorer-button:focus, .main-action-button:focus, .back-btn:focus {
  outline: 2px solid #44ff44;
  outline-offset: 2px;
}

/* --- Unified Card/Container Styles --- */
.card, .faucet-container, .block-container, .ord-container, .transaction-card, .dialog, .tx-dialog {
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  background: rgba(20,20,20,0.97);
}

/* --- Responsive Button Sizing --- */
@media (max-width: 500px) {
  .styled-button, .button, .wallet-button, .github-button, .explorer-button, .main-action-button, .back-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

/* --- End Unified UI/UX Foundation --- */

@media (max-width: 500px) {
  .swipe-arrow {
    min-width: 64px;
    min-height: 64px;
    font-size: 2.8rem;
    opacity: 0.7;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.18);
    z-index: 3000;
    top: 38%; /* Move arrows higher to avoid overlapping buttons */
  }
  .swipe-arrow-left {
    left: 2vw;
  }
  .swipe-arrow-right {
    right: 2vw;
  }
  .swipe-hint {
    font-size: 1.2rem;
    padding: 12px 28px;
  }
  .swiper-slide {
    overflow-y: auto;
    max-height: 90vh;
  }
  .buttons {
    margin-bottom: 48px !important; /* Add space below buttons for arrows */
  }
  .wallet-selector {
    margin-bottom: 24px !important; /* Add space below selector for arrows */
  }
}

.plugz-link-btn {
  flex: 1;
  margin: 0 12px;
  padding: 7px 0;
  background: none;
  color: #44ff44;
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.18s, background 0.18s, transform 0.12s;
  z-index: 4000;
  white-space: nowrap;
  outline: none;
}
.plugz-link-btn:hover, .plugz-link-btn:focus {
  color: #fff;
  background: #23232a;
  transform: scale(1.04);
}
@media (max-width: 500px) {
  .plugz-link-btn {
    font-size: 0.98rem;
    padding: 6px 0;
    margin: 0 6px;
    border-radius: 10px;
  }
  .header {
    padding: 10px 8px;
    margin-top: 6px;
  }
}

/* --- Send Transaction Form --- */
.send-form-card {
  background: #111;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 32px 18px 24px 18px;
  margin: 24px auto 0 auto;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.send-form-card label,
.send-form-card .fee-label {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.send-form-card input,
.send-form-card .styled-input {
  background: #23232a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1.08rem;
  margin-bottom: 10px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.18s, background 0.18s;
}
.send-form-card input:focus,
.send-form-card .styled-input:focus {
  background: #2c2c33;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  outline: none;
}
.send-form-card .button-row {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
}
.send-form-card .button-row .styled-button {
  flex: 1;
  background: #23232a;
  color: #fff;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 0;
  transition: background 0.18s, color 0.18s;
}
.send-form-card .button-row .styled-button.active,
.send-form-card .button-row .styled-button:focus {
  background: #44ff44;
  color: #000;
}
.send-form-card .fee-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.send-form-card .fee-value {
  background: #23232a;
  color: #44ff44;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 1.08rem;
  margin-left: 8px;
}
.send-form-card .styled-slider {
  width: 100%;
  margin: 10px 0 18px 0;
}
.send-form-card .checkbox-container {
  margin: 10px 0 0 0;
  width: 100%;
  justify-content: flex-start;
}
.send-form-card .send-btn {
  width: 100%;
  background: linear-gradient(135deg, #23232a, #18181b);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 0;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.send-form-card .send-btn:hover,
.send-form-card .send-btn:focus {
  background: #44ff44;
  color: #000;
  transform: scale(1.03);
}
@media (max-width: 500px) {
  .send-form-card {
    max-width: 98vw;
    padding: 18px 4px 14px 4px;
    border-radius: 16px;
    gap: 12px;
  }
  .send-form-card .send-btn {
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 10px;
  }
}