body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  position: relative;
}

.left-buttons {
  display: flex;
  gap: 10px;
}

.home-button,
.accounts-button {
  background-color: #f4f4f4;
  border: none;
  padding: 10px 15px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
}

.home-button:hover,
.accounts-button:hover {
  background-color: #e6e6e6;
}

.home-button.active {
  border-bottom: 3px solid #AEEC6F;
}

.accounts-button.active {
  background-color: #e6e6e6;
}

.exit-button {
  background-color: #f4f4f4;
  color: red;
  border: none;
  padding: 10px 15px;
  font-size: 1em;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.exit-button:hover {
  background-color: #ffcccc;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 115px;
  top: 60px;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border: 1px solid #ccc;
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content div {
  padding: 12px 16px;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}


.content {
  text-align: left;
  padding: 50px;
}

.content h1 {
  color: black;
}

.balance_credit {
  margin-top: 30px;
}

.card-info-table {
  margin-top: 20px;
  width: 20%;
  border-collapse: collapse;
}

.card-info-table td {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card-number {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #333;
}

.card-details {
  font-size: 1em;
  color: #666;
}