 .login-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.no-border-table {
  border-collapse: separate;
  border-spacing: 0 1px;
  border-radius: 16px;
}

.no-border-table td {
  border: none;
  border-radius: 4px;
  padding: 2px;
}

.no-border-table tr:nth-child(odd) {
  background-color: #f0e6ff;
}

.no-border-table tr:nth-child(even) {
  background-color: #e6e6fa;
}

.no-border-table input,
.no-border-table button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #d1c1e0;
  border-radius: 4px;
}

.no-border-table input {
  background-color: white;
}

.no-border-table button {
  background-color: #706ae8;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.no-border-table button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.no-border-table button:hover:not(:disabled) {
  background-color: #463dec;
}
.cashback-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 15px auto;
}

.cashback-title {
  color: purple;
  font-weight: bold;
  margin-bottom: 5px;
}

.cashback-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cashback-table th,
.cashback-table td {
  padding: 8px 12px;
  text-align: center;
}

.cashback-table thead {
  background-color: #f3e5f5;
  color: #4a148c;
}

.cashback-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.cashback-table tbody tr:hover {
  background-color: #e8eaf6;
}

.dashboard-table th {
  background-color: rgb(58, 78, 90);
  color: white;
  font-size: 13px;
}

.dashboard-table td {
  color: black;
  font-size: 16px;
}

.dashboard-table .savings-gift {
  background-color: #aecd00;
  color: white;
}

.dashboard-table .cashback {
  background-color: #4a90e2;
  color: white;
}

/* Special table styles */
.dashboard-table.items-table tbody tr td:first-child {
  text-decoration: underline;
  color: #3e696c;
  cursor: pointer;
}

.dashboard-table#dashboardtable tbody tr td:nth-child(2) {
  text-decoration: underline;
  color: #6f5e92;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
}

/* Dashboard container and blocks */
.dashboard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.dashboard-block {
  background-color: #b9d9eb;
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin: 5px;
  text-align: center;
  width: 45%;
  box-sizing: border-box;
}

.dashboard-block h3 {
  margin-bottom: 10px;
}

.dashboard-block p {
  font-size: 16px;
  font-weight: bold;  
}

.dashboard-block.pay { background-color: #ffc107; }
.dashboard-block.users { background-color: #6495ed; }
.dashboard-block.sales { background-color: #ccccff; }
.dashboard-block.rewards { background-color: #87cefa; }

