:root {
  --withdrawal-bg: #000000;
  --withdrawal-card: #ffffff;
  --withdrawal-cyan: #01ba9a;
  --withdrawal-text: #ffffff;
  --withdrawal-muted: #848e9c;
  --withdrawal-border: #333333;
  --withdrawal-btn-purple: #9b66ff;
}

.withdrawal-container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
}

.withdrawal-section-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
  background: linear-gradient(10deg, #75f8bdb9, #01ba9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* LEFT CARD STYLING */
.withdrawal-card {
  background: var(--withdrawal-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--withdrawal-border);
  height: fit-content;
}

.withdrawal-balance-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(117, 248, 188, 0.966);
}
.withdrawal-icon-box {
  width: 40px;
  height: 40px;
  background: #cfcece;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: black;
}

.withdrawal-label {
  color: black;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
}
.withdrawal-balance-val {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
}

.card-input-section {
  background: linear-gradient(180deg, #022b26 0%, #000000 100%);
  padding: 20px;
}
.withdrawal-input-wrapper {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 15px;
}

.withdrawal-field {
  background: transparent;
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  outline: none;
}
.withdrawal-field::-webkit-inner-spin-button,
.withdrawal-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.withdrawal-submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(
    to left,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  color: black;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.withdrawal-submit-btn:hover {
  background: linear-gradient(
    to right,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 186, 154, 0.3);
}

/* HISTORY TABLE BOX STYLING */
.withdrawal-table-box {
  background: linear-gradient(
    135deg,
    rgba(23, 14, 10, 0.9) 0%,
    rgba(26, 77, 75, 0.971) 100%
  );

  border-radius: 8px;
  padding: 15px;
  color: white;
}

.withdrawal-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 10px;
}

.filter-inputs-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.withdrawal-date-input,
.withdrawal-select {
  background-color: #1a1a1a;

  color: white;
  border: 1px solid #444;
  padding: 10px;

  border-radius: 4px;
  font-size: 0.9rem;
  min-width: 120px;
  max-height: 40px;
}

.withdrawal-search-btn {
  background: linear-gradient(
    to left,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.withdrawal-search-btn:hover {
  background: linear-gradient(
    to right,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 186, 154, 0.3);
}

.withdrawal-scroll {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.withdrawal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}
.withdrawal-th {
  text-align: left;
  padding: 12px 15px;
  background-color: #000;
  color: #75f8bc;
  font-size: 0.85rem;
}
.withdrawal-td {
  padding: 14px 15px;
  font-size: 0.85rem;
  color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.withdrawal-table tbody tr {
  border-bottom: 1px solid #222;
  transition: background-color 0.2s;
}
.withdrawal-table tbody tr:nth-child(even) {
  background-color: #0f0e0e;
}
.withdrawal-table tbody tr:nth-child(odd) {
  background-color: #161616;
}
.withdrawal-table tbody tr:hover {
  background-color: #252525 !important;
}

.withdrawal-status-tag {
  font-weight: 600;
}

.withdrawal-pagination {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}
.withdrawal-page-btn {
  background: linear-gradient(
    to left,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.withdrawal-page-btn:hover {
  background: linear-gradient(
    to right,
    var(--color-primary-yellow),
    var(--color-primary-yellow-dark)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(199, 131, 5, 0.3);
}
.withdrawal-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .withdrawal-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .withdrawal-controls {
    flex-direction: column;
  }
  .filter-inputs-group {
    width: 100%;
  }
  .withdrawal-date-input {
    flex: 1;
  }
  .withdrawal-search-btn,
  .withdrawal-select {
    width: 100% !important;
  }
}

/* stake css */
.price-banner {
  background: rgba(117, 248, 188, 0.966);
}

.price-label {
  color: #000000;
  font-weight: 700;
}

.stake-input-group {
  margin-bottom: 20px;
}

.field-label {
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

/* --- RIGHT SECTION: GUIDELINES STYLING --- */
.stake-notes-card {
  background: linear-gradient(
    135deg,
    rgba(23, 14, 10, 0.9) 0%,
    rgba(26, 77, 75, 0.971) 100%
  );

  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(117, 248, 188, 0.2);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stake-notes-title {
  color: #75f8bc;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stake-notes-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #75f8bc, transparent);
}

.stake-notes-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stake-notes-list li {
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.stake-notes-list li:hover {
  background: rgba(117, 248, 188, 0.08);
  border-color: rgba(117, 248, 188, 0.4);
  transform: translateX(8px);
  color: #fff;
}

/* Checkmark Icons */
.stake-notes-list li::before {
  content: "\f058";
  font-weight: 900;
  color: #75f8bc;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .stake-notes-card {
    margin-top: 20px;
  }
}

::placeholder {
  color: #aaaaaa !important;
  opacity: 1;
}
/* Target the calendar picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
}