#login-page .form-container {
  /* styles only for login */
}

/* Everything below is now outside the previous block and works normally */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

header {
  background-color: #0B1A57;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.menu-icon,
.power-icon {
  color: white;
  font-size: 24px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
  text-align: center;
  border-bottom: 2px solid #0B1A57;
  padding-bottom: 5px;
  width: 100%;
  max-width: 400px;
}

.login-box {
  background-color: #e0e0e0;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-box label {
  display: block;
  margin-bottom: 5px;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.reset {
  font-size: 12px;
  margin-bottom: 15px;
}

.reset a {
  color: #0B1A57;
  text-decoration: none;
  font-weight: bold;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #0B1A57;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0a1549;
}

.background-label {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 120px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05); /* Faded black */
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.login-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-family: 'Segoe UI', sans-serif;
}



#signup-page .form-container {
  /* styles only for signup */
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

header {
  background-color: #0b0d47;
  color: white;
  padding: 10px;
  text-align: center;
  border-bottom: 3px solid #000;
  position: relative;
}



.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.menu-icon,
.power-icon {
  font-size: 24px;
  padding: 5px 15px;
  color: white;
}

h1 {
  font-size: 20px;
  margin: 5px 0 0 0;
}

.subtitle {
  font-size: 12px;
  margin: 0;
  color: white;
}

.form-container {
  background-color: #ddd;
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  width: 90%;
  max-width: 400px;
  box-sizing: border-box;
}

form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  font-size: 16px;
}

form button {
  width: 100%;
  padding: 10px;
  background-color: #0b0d47;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

form button:hover {
  background-color: #181b6b;
}

select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: white;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}


/* General body layout for dashboard */
.dashboard-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 10px;
}

/* Main container */
.dashboard-container {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Top bar */
.dashboard-topbar {
  background-color: #0a0f5a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}

.menu-icon {
  font-size: 20px;
}

.top-icons {
  display: flex;
  gap: 10px;
}

.power-icon,
.user-icon {
  font-size: 18px;
}

/* Subtitle */
.dashboard-subtitle {
  font-size: 14px;
  margin: 10px 0;
  border-bottom: 2px solid #0a0f5a;
  padding-bottom: 5px;
  color: black;
}

.dashboard-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0;
}

.dashboard-buttons button {
  background-color: #0a0f5a;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

/* Medium screens: 2 buttons per row */
@media (min-width: 420px) {
  .dashboard-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Larger screens: 3 buttons per row */
@media (min-width: 600px) {
  .dashboard-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Date input */
.date-container {
  margin: 10px 0;
}

.date-container input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
}

/* Metric Boxes */
.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-box {
  border: 1px solid #999;
  padding: 10px;
  border-radius: 5px;
  background-color: #fefefe;
}

.metric-box p {
  margin: 0;
  font-weight: bold;
}

.metric-box h3 {
  margin: 5px 0 0;
  font-weight: bold;
}



/* CASHOUT PAGE */
.cashout-page {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #020a50;
  color: white;
  padding: 10px 15px;
}

.top-bar .title {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.menu-icon, .power-icon, .profile-icon {
  font-size: 20px;
  cursor: pointer;
}

.icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cashout-container {
  padding: 20px 10px;
}

.table-wrapper {
  background-color: #f2f2f2;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cashout-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}

.cashout-table th,
.cashout-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
}

.cashout-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .cashout-table th, .cashout-table td {
    font-size: 12px;
    padding: 6px;
  }
}


/* PRICING PAGE */
.pricing-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.pricing-container {
  padding: 20px 10px;
}

.network-tabs {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.network-tabs button {
  flex: 1;
  margin: 0 3px;
  padding: 10px;
  border: 1px solid #0B1A57;
  background-color: #f0f0f0; /* Light gray */
  color: #0B1A57;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.network-tabs button.active {
  background-color: #0a0f5a;
  color: white;
}
/* Pricing Box Styles */
.pricing-box {
  background-color: #e0e0e0;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}

.pricing-row input[type="text"] {
  padding: 6px;
  font-size: 13px;
  width: 100%;
}

.status-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status-buttons button {
  font-size: 12px;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.status-buttons .available {
  background-color: #0B1A57;
  color: white;
}

.status-buttons .not-available {
  background-color: #ccc;
  color: black;
}


/* SETTINGS PAGE */
.settings-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.settings-container {
  padding: 20px 10px;
}

.settings-box {
  background-color: #e0e0e0;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.settings-box label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.settings-box input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.save-button {
  background-color: #0B1A57;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.save-button:hover {
  background-color: #07103a;
}

.info-display p {
  font-size: 15px;
  margin: 20px 0;
  font-weight: bold;
  line-height: 1.5;
}


/* TRANSACTIONS PAGE */
.transactions-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.transactions-container {
padding: 20px 10px;
  width: 100%;
  box-sizing: border-box;
}
.transaction-box {
  background-color: #e0e0e0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.transaction-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  font-size: 14px;
}
.transaction-table td {
  border: 1px solid #999;
  padding: 10px;
  vertical-align: top;
}

.transaction-table td:first-child {
  font-weight: bold;
  width: 40%;
  background-color: #f7f7f7;
}


/* ACCOUNT STATUS PAGE */
.account-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.account-container {
  padding: 20px 10px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.account-box {
  background-color: #e0e0e0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.account-header {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}

.account-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status-actions button {
  font-size: 12px;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-active {
  background-color: #007bff;
  color: white;
}

.btn-dormant {
  background-color: #ffc107;
  color: black;
}

.btn-deactivate {
  background-color: #dc3545;
  color: white;
}




.dashboard-page {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.dashboard-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-bottom: 2px solid #0B1A57;
  margin: 10px 20px 0;
}

.dashboard-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.dashboard-buttons button {
  padding: 12px 20px;
  background-color: #0B1A57;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  min-width: 120px;
  text-transform: uppercase;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.dashboard-buttons button:hover {
  background-color: #09204a;
}
