/******************************************************************************/
/* General
/******************************************************************************/
:root {
  --background-gradient: linear-gradient(to bottom right, #f5f5f5, #e0e0e0);
  --background-color: #ffffff;
  --text-color: #161616;
  --link-color: #161616;
  --nav-active-bg: #161616;
  --error-color: red;
  --card-bg: #fff;
  --card-text: #161616;
  --card-brdr: #dfdfdf;
  --button-bg: #161616;
  --button-text: #fff;
  --button-hover-bg: #232323;
  --button-hover-text: #fff;
  --clr-mode: #4d4d4d;
  --input-bg: #fff;
  --input-text: #161616;
  --input-border: #d5d5d5;
  --input-focus: #161616;
  --kpr-d: #00546a;
  --kpr-l: #067c9b;
  --kpr-m: #036780;
  --g-vd: #555555;
  --gry-d: #7a7878;
  --gry-m: #e1e1e1;
  --gry-l: #e5e5e5;
  --w: #ffffff;
  --r: #ad2227;
  --g: #00a421;
  --o: #ff4800;
  --footer-text: #161616;
  --footer-bg: transparent;
}

html.dark-mode {
  --background-gradient: linear-gradient(to bottom right, #101010, #141414);
  --background-color: #1c1c1c;
  --text-color: #f5f5f5;
  --link-color: #f5f5f5;
  --nav-active-bg: #333333;
  --error-color: #ff6b6b;
  --card-bg: #232323;
  --card-text: #f5f5f5;
  --card-brdr: #494949;
  --button-bg: #f5f5f5;
  --button-text: #161616;
  --button-hover-bg: #e0e0e0;
  --button-hover-text: #161616;
  --clr-mode: #acacac;
  --input-bg: #5f5f5f;
  --input-text: #cacaca;
  --input-border: #494949;
  --input-focus: #5e5e5e;
  --footer-text: #f5f5f5;
  --footer-bg: transparent;
}

html,
body {
  font-family: "Montserrat", sans-serif !important;
  line-height: 1;
  height: 100%;
  background-image: var(--background-gradient) !important;
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;
  transition: background 0.2s, color 0.2s;
}

select:focus {
  outline: none !important;
}

select {
  outline: none;
  border-radius: 10px !important;
}

input:focus {
  outline: none !important;
}


button:focus,
input[type="button"]:focus,
input[type="text"]:focus {
  outline: none !important;
}

input {
  outline: none !important;
  border: 1px solid #e5e5e5;
  border-radius: 10px !important;
}

input[type="radio"],
input[type="checkbox"] {
  line-height: normal;
  min-width: 22px;
  max-width: 22px;
  height: 25px;
}

.dhdn{
  display: none;
}
/******************************************************************************/
/* Buttons
/******************************************************************************/
.theme-toggle-btn {
  height: 45px;
  padding: 8px 16px;
  border: none;
  border-radius: 15px;
  background: var(--background-color);
  color: var(--text-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

html.dark-mode .theme-toggle-btn {
  background: var(--background-color);
  color: var(--text-color);
  border: 1px solid #444;
}

.btn-clr-blk,
.btn-clr-blk:visited {
  background: var(--button-bg, #161616);
  color: var(--button-text, #fff);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-clr-blk:hover,
.btn-clr-blk:focus {
  background: var(--button-hover-bg, #232323);
  color: var(--button-hover-text, #fff);
}

.kbtn button {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  background-color: var(--w);
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}

.kbtn button:hover {
  background-color: var(--kpr-l);
  color: var(--w);
  border-color: var(--kpr-l);
}

.kbtn button:active {
  transform: translateY(0);
  background-color: var(--kpr-d);
  border-color: var(--kpr-d);
}

html.dark-mode .kbtn button {
  background-color: var(--card-bg);
  color: var(--text-color);
  border-color: var(--card-brdr);
}

html.dark-mode .kbtn button:hover {
  background-color: var(--kpr-l);
  color: var(--w);
  border-color: var(--kpr-l);
}

/******************************************************************************/
/* Button Colors
/******************************************************************************/
.bclr-g {
  background-color: var(--g) !important;
  color: var(--w) !important;
  border: none !important;
}

.bclr-g:hover {
  background-color: #037c1b !important;
}

.bclr-r {
  background-color: var(--r) !important;
  color: var(--w) !important;
  border: none !important;
}

.bclr-r:hover {
  background-color: #68090c !important;
}

.bclr-kd {
  background-color: var(--kpr-d) !important;
  color: var(--w) !important;
}

/******************************************************************************/
/* Positions
/******************************************************************************/
.tp-10 {
  top: 10px;
}

.tp-20 {
  top: 50%;
  transform: translateY(-50%);
}

.lf-10 {
  left: 10px;
}

.rt-8 {
  right: 8px;
}

.abslt {
  position: absolute;
}

/******************************************************************************/
/* Z-index
/******************************************************************************/
.z-10 {
  z-index: 10;
}

/******************************************************************************/
/* Width
/******************************************************************************/
.kw-100 {
  width: 100px;
}

.kw-50 {
  width: 50px;
}

.kw-110 {
  width: 110px;
}

.kw-140 {
  width: 140px;
}

.kw-150 {
  width: 150px;
}

.kw-400 {
  width: 400px !important;
}

.kw-450 {
  width: 450px !important;
}

.kw-800 {
  width: 800px !important;
}

.kw-100p {
  width: 100%;
}

/******************************************************************************/
/* Height
/******************************************************************************/
.kh-45 {
  height: 45px;
}

.kh-50 {
  height: 50px;
}

.kh-65 {
  height: 65px;
}

.kh-110 {
  height: 110px;
}

.kh-150 {
  height: 150px;
}

.kh-720 {
  height: 720px;
}

.kh-100p{
  height: 100%;
}

/******************************************************************************/
/* Font Size
/******************************************************************************/
.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

/******************************************************************************/
/* Font Weight
/******************************************************************************/
.fs-mid {
  font-weight: 500;
}

/******************************************************************************/
/* Text Align
/******************************************************************************/
.tac{
  text-align: center;
}

.tar{
  text-align: right;
}

.tal{
  text-align: left;
}

/******************************************************************************/
/* Borders
/******************************************************************************/
.brdr-b{
  border-bottom: 1px solid var(--input-border);
}
/******************************************************************************/
/* Margins
/******************************************************************************/
.mgnt-2 {
  margin-top: 2px;
}

.mgnt-5 {
  margin-top: 5px;
}

.mgnt-10 {
  margin-top: 10px;
}

.mgnt-15 {
  margin-top: 15px;
}

.mgnt-20 {
  margin-top: 20px;
}

.mgnt-50 {
  margin-top: 50px;
}

/******************************************************************************/
/* Paddings
/******************************************************************************/
.pd-0 {
  padding: 0px !important;
}

.pd-5 {
  padding: 5px;
}

.pd-10 {
  padding: 10px;
}

.pd-15 {
  padding: 15px;
}

.pd-20 {
  padding: 20px !important;
}

.pdlr-15 {
  padding: 0px 15px;
}

.pdlrb-15 {
  padding: 0px 15px 15px 15px;
}

.pd-30 {
  padding: 30px;
}

.pdb-50 {
  padding-bottom: 50px;
}


/******************************************************************************/
/* Border Radius
/******************************************************************************/
.br-r10 {
  border-radius: 10px;
}

.br-r15 {
  border-radius: 15px;
}

/******************************************************************************/
/* Flex
/******************************************************************************/
.flx {
  display: flex;
}

.sb {
  justify-content: space-between;
}

.fs {
  justify-content: flex-start;
}

.fe {
  justify-content: flex-end;
}

.ctr {
  justify-content: center;
}

.fd-clm {
  flex-direction: column;
}

.fgap-15{
  gap: 15px;
}

.fgap-5{
  gap: 5px;
}

/******************************************************************************/
/* Card
/******************************************************************************/
.kcrd {
  border-radius: 10px;
  border: 1px solid var(--card-brdr);
  background: var(--card-bg, #fff) !important;
  color: var(--card-text, var(--text-color)) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}

/******************************************************************************/
/* SVG Color Inversion
/******************************************************************************/
.svg-clr {
  filter: none;
  transition: filter 0.2s, color 0.2s;
}

html.dark-mode .svg-clr {
  filter: brightness(0) invert(1);
}

/******************************************************************************/
/* Color Mode
/******************************************************************************/
.clr-mode {
  color: var(--clr-mode, var(--text-color));
  transition: color 0.2s;
}

/******************************************************************************/
/* Input
/******************************************************************************/
input,
.input-mode,
input.input-mode,
textarea {
  background: var(--input-bg);
  color: var(--input-text, #161616);
  border: 1px solid var(--input-border, #ccc);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

/* Hide number input spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/******************************************************************************/
/* Validation
/******************************************************************************/
#username-error,
#password-error,
#token-error,
.error-message,
#reg_lname-error,
#reg_fname-error,
#reg_email-error,
#reg_email2-error,
#cnfrmPass-error,
#i_alias-error,
#i_fullname-error,
#i_pw-error,
#i_cpw-error,
#reg_password-error {
  margin-top: 5px !important;
  font-size: 14px !important;
  color: #e60008;
}

/* Ensure toggler icon is positioned relative to its input container */
.input-icon-wrap, .showPw-wrap {
  position: relative;
  width: 100%;
}

.footer-mode {
  color: var(--footer-text, var(--text-color));
  background: var(--footer-bg, transparent);
  padding: 16px 0 8px 0;
  font-size: 14px;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  z-index: 100;
  transition: color 0.2s, background 0.2s;
}

body { padding-bottom: 48px; }

/******************************************************************************/
/* Table Styles
/******************************************************************************/
.table-controls {
  margin-bottom: 15px;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
  min-height: 35px;
}

.rows-selector {
  display: flex;
  align-items: center;
}

.rows-selector label {
  font-size: 12px;
  color: var(--clr-mode);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.search-box {
  display: flex;
  align-items: center;
}

.rows-select, .search-input {
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid;
  font-size: 12px;
  transition: all 0.2s ease;
  height: 35px;
  box-sizing: border-box;
}

.rows-select {
  margin: 0 5px;
  min-width: 60px;
}

.search-input {
  width: 180px;
  min-width: 150px;
}

.rows-select.light, .search-input.light {
  background: #ffffff;
  color: #161616;
  border-color: #dee2e6;
}

.rows-select.dark, .search-input.dark {
  background: #2a2a2a;
  color: #f5f5f5;
  border-color: #404040;
}

.modern-table-container {
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid;
}

.modern-table-container.light {
  border-color: #dee2e6;
}

.modern-table-container.dark {
  border-color: #404040;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  transition: all 0.2s ease;
  table-layout: fixed;
}

.modern-table.light {
  background: #ffffff;
  color: #161616;
}

.modern-table.dark {
  background: #232323;
  color: #f5f5f5;
}

.modern-table th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid;
}

.modern-table.light th {
  background: #f8f9fa;
  color: #495057;
  border-bottom-color: #dee2e6;
}

.modern-table.dark th {
  background: #1a1a1a;
  color: #acacac;
  border-bottom-color: #404040;
}

.modern-table td {
  padding: 10px 12px;
  border-bottom: 1px solid;
  transition: background-color 0.2s ease;
  height: 45px;
  vertical-align: middle;
}

.modern-table.light td {
  border-bottom-color: #e9ecef;
}

.modern-table.dark td {
  border-bottom-color: #404040;
}

.modern-table.light tbody tr:hover {
  background-color: #f8f9fa;
}

.modern-table.dark tbody tr:hover {
  background-color: #2a2a2a;
}

.purchase-btn {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.purchase-btn.light {
  background-color: var(--kpr-l);
  color: #ffffff;
}

.purchase-btn.dark {
  background-color: var(--kpr-l);
  color: #ffffff;
}

.purchase-btn:hover {
  background-color: var(--kpr-d);
  transform: translateY(-1px);
}

.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.table-info {
  font-size: 12px;
  color: var(--clr-mode);
}

.pagination {
  display: flex;
  gap: 5px;
}

.page-btn {
  padding: 6px 10px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn.light {
  background: #ffffff;
  color: #161616;
  border-color: #dee2e6;
}

.page-btn.dark {
  background: #2a2a2a;
  color: #f5f5f5;
  border-color: #404040;
}

.page-btn:hover:not(:disabled) {
  background-color: var(--kpr-l);
  color: #ffffff;
  border-color: var(--kpr-l);
}

.page-btn.active {
  background-color: var(--kpr-l);
  color: #ffffff;
  border-color: var(--kpr-l);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.investor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.investor-name {
  font-weight: 400;
  font-size: 10px;
  color: var(--clr-mode);
  opacity: 0.8;
}

.share-count {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
}

.no-data {
  text-align: center;
  padding: 40px 20px;
  color: var(--clr-mode);
  font-style: italic;
  height: 320px;
  vertical-align: middle;
}

.transaction-list {
  max-height: 300px;
  overflow-y: auto;
}

.transaction-item {
  border-bottom: 1px solid var(--card-brdr);
  transition: background-color 0.2s ease;
}

.transaction-item:hover {
  background-color: var(--gry-l);
}

html.dark-mode .transaction-item:hover {
  background-color: var(--card-brdr);
}

.transaction-item:last-child {
  border-bottom: none;
}

.no-transactions {
  color: var(--clr-mode);
  font-style: italic;
}

.mgnb-15 {
  margin-bottom: 15px;
}

label {
  margin-bottom: 0px !important;
}

.transaction-type {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transaction-type.sold {
  background-color: #ff4757;
  color: white;
}

.transaction-type.purchased {
  background-color: #2ed573;
  color: #004331;
}

.transaction-type.origin {
  background-color: #3742fa;
  color: white;
}

.transaction-type.common {
  background-color: #1dd1a1;
  color: #004331;
}

.transaction-type.preferred {
  background-color: #8e44ad;
  color: white;
}

/******************************************************************************/
/* Profile Specific Styles
/******************************************************************************/
.investor-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.investor-avatar .kcrd {
  background: linear-gradient(135deg, var(--kpr-l), var(--kpr-d));
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.profile-stat-card {
  text-align: center;
  padding: 20px;
}

.profile-stat-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--kpr-l);
  margin-bottom: 5px;
}

.profile-stat-label {
  font-size: 12px;
  color: var(--clr-mode);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/******************************************************************************/
/* Mobile Responsive Styles
/******************************************************************************/
@media (max-width: 768px) {
  /* General styles */
  .kbtn button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-clr-blk,
  .btn-clr-blk:visited {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* Table styles */
  .modern-table th {
    padding: 6px 8px;
    font-size: 10px;
  }

  .modern-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .pagination {
    font-size: 12px;
  }

  /* Profile specific mobile styles */
  .investor-avatar .kcrd {
    width: 60px !important;
    height: 60px !important;
    font-size: 18px !important;
  }
  
  .profile-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .profile-stat-value {
    font-size: 20px;
  }
}

/******************************************************************************/
/* Settings Popup Styles
/******************************************************************************/
.settings-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.settings-popup.show {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
}

.settings-popup-content {
  background: var(--card-bg);
  border-radius: 15px;
  width: 300px;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--card-brdr);
  overflow: hidden;
  transform: scale(0.7) translateY(-50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.settings-popup.show .settings-popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.settings-popup.hide .settings-popup-content {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--card-brdr);
  background: var(--card-bg);
}

.settings-header h3 {
  margin: 0;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--clr-mode);
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
  background: var(--gry-l);
  color: var(--text-color);
}

html.dark-mode .close-btn:hover {
  background: var(--card-brdr);
}

.settings-body {
  padding: 0px ;
}

.settings-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--text-color);
}

.settings-item:hover {
  background: var(--gry-l);
}

html.dark-mode .settings-item:hover {
  background: var(--card-brdr);
}

.settings-item i {
  margin-right: 15px;
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--clr-mode);
}

.settings-item span {
  font-size: 14px;
  font-weight: 500;
}

.logout-item {
  color: var(--r);
}

.logout-item i {
  color: var(--r);
}

.logout-item:hover {
  background: rgba(173, 34, 39, 0.1);
}

.settings-divider {
  height: 1px;
  background: var(--card-brdr);
  margin: 10px 0;
}

/******************************************************************************/
/* Page Loader Styles
/******************************************************************************/
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: var(--text-color);
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--card-brdr);
  border-top: 4px solid var(--kpr-l);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-mode);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navigation transition loader */
.nav-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-brdr);
  z-index: 9998;
  overflow: hidden;
  display: none;
}

.nav-loader.active {
  display: block;
}

.nav-loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--kpr-l), var(--kpr-d));
  width: 0%;
  animation: progress 2s ease-in-out;
}

@keyframes progress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/******************************************************************************/
/* Sell Modal Styles
/******************************************************************************/
.sell-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--input-border);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--input-text);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--kpr-l);
}

.form-input::placeholder {
  color: var(--clr-mode);
  opacity: 0.7;
}

.form-help {
  margin-top: 5px;
  font-size: 12px;
  color: var(--clr-mode);
  opacity: 0.8;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-cancel {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--card-brdr);
  border-radius: 10px;
  background: transparent;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background: var(--gry-l);
}

html.dark-mode .btn-cancel:hover {
  background: var(--card-brdr);
}

.btn-sell {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--g);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sell:hover {
  background: #037c1b;
  transform: translateY(-1px);
}

.btn-purchase {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--kpr-l);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-purchase:hover {
  background: var(--kpr-d);
  transform: translateY(-1px);
}

.share-info-display {
  padding: 15px;
  background: var(--gry-l);
  border-radius: 8px;
  margin-top: 5px;
}

html.dark-mode .share-info-display {
  background: var(--card-brdr);
}

.total-cost-display {
  font-size: 20px;
  font-weight: bold;
  color: var(--clr-mode);
  padding: 15px;
  background: var(--gry-l);
  border-radius: 8px;
  text-align: center;
  margin-top: 5px;
}

html.dark-mode .total-cost-display {
  background: var(--card-brdr);
}