/* styles.css */
.custom-table-container {
  margin: 20px auto;
  max-width: 900px;
}

.table-wrapper {
  margin-bottom: 30px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.custom-table thead th {
  background: linear-gradient(90deg, #ff7eb3, #915dd1);
  color: #fff;
  font-weight: bold;
}

.custom-table tbody td {
  background-color: #fdfdfd;
}

.custom-table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.custom-table td p {
  margin: 5px 0;
}

.custom-table th {
  white-space: nowrap;
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

.account-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;

}

.account-box {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 100%;
  background: linear-gradient(90deg, #ff7eb3, #915dd1);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-box h3 {
  margin-top: 0;
  font-size: 1.4em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}

.account-box p {
  margin: 10px 0;
  font-size: 1em;
}

.account-box p strong {
  color: #fff;
}