body {
  background-color: #f8f9fa;
}

.profile-section {
  text-align: center;
  margin-top: 20px;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.student-id-text {
  color: #4caf50;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  text-decoration: underline;
}

.student-id-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.student-id-img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 130px;
  overflow: hidden;
}

.bank-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  transition: transform 0.3s ease;
}

.bank-card.active {
  z-index: 2;
}

.bank-card.next {
  transform: translateY(5px) scale(0.98);
  opacity: 0.8;
  z-index: 1;
}

.bank-card.hidden {
  transform: translateY(10px) scale(0.96);
  opacity: 0.5;
  z-index: 0;
}

.bank-card img {
  width: 60px;
  border-radius: 5px;
}

.card-navigation {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.card-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.card-indicator.active {
  background: #4caf50;
  width: 16px;
  border-radius: 4px;
}

.transactions {
  margin-top: 20px;
}

.transaction-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.merchant-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.split-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.bottom-nav .nav-item {
  text-align: center;
  flex-grow: 1;
  color: #777;
  font-size: 14px;
  padding: 5px 0;
  text-decoration: none;
}

.bottom-nav .nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
}

.bottom-nav .nav-item.active {
  color: #4caf50;
}
.transactions-container {
  max-width: 100%;
  height: 280px; /* Set a fixed height for the scrollable area */
  display: flex;
  flex-direction: column;
}

.transactions {
  flex-grow: 1;
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 230px; /* Ensures smooth scrolling */
  padding-right: 5px;
}

.transactions::-webkit-scrollbar {
  width: 6px;
}

.transactions::-webkit-scrollbar-thumb {
  background: #4caf50;
  border-radius: 3px;
}

.transactions::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.transaction-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.merchant-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.split-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.cash-stuffing {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cash-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 8px;
  background: #f8f9fa;
}

.cash-box h4 {
  color: #4caf50;
}

.btn-success {
  background: #4caf50;
  border: none;
}

.btn-success:hover {
  background: #45a049;
}
.account-info {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.account-info h6 {
  color: #4caf50;
  font-weight: 700;
}

.account-info p {
  font-size: 14px;
  margin-bottom: 5px;
}
.modal-content {
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.see-details-btn {
  background: orange !important;
  color: white !important;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.list-group-item {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-group-item i {
  font-size: 20px;
}
