.cta-section {
  padding: 0; /* Remove padding from the section */
  background-color: #003366; /* Dark blue background for the section */
  color: #a0b6cb; /* Light text */
}

.cta-message h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #a0b6cb;
}

.cta-message p {
  font-size: 16px;
  color: #a0b6cb;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10;
  line-height: 1.6;
}

.cta-highlight {
  font-size: 18px;
  font-weight: bold;
  color: #a0b6cb;
  margin-top: 15px;
}

/* Account Details Wrapper (covers full column height) */
.account-details-wrapper {
  background-color: #022141; /* Dark blue background for the account section */
  height: 300px;
  padding: 20px; /* Padding inside the column */
  display: flex;
  justify-content: center; /* Center the content vertically */
  align-items: center; /* Center the content horizontally */
  border-radius: 8px;
}

/* Account Box inside the right column */
.account-box {
  padding: 20px;
  border-radius: 8px;
  color: #a0b6cb;
  width: 100%; /* Ensure it fits within the column */
  text-align: center;
}

.account-box h3 {
  font-size: 22px;
  color: #bacde0; /* Light blue for headings */
}

.account-box p {
  font-size: 22px;
  color: #a0b6cb;
  margin: 5px 0;
  line-height: 1.5;
}

.cta-image .image-container {
  width: 100%;
  height: 300px;
  padding: 0; /* No padding */
}

.cta-image .cta-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.loading-text-center {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}








.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 16px;
  text-align: left;
  color: #333;
}

.transactions-table thead {
  background-color: #f4f4f4;
}

.transactions-table th, .transactions-table td {
  border: 1px solid #ddd;
  padding: 10px;
  white-space: nowrap; /* Prevent content wrapping */
}

.transactions-table th {
  font-weight: bold;
  text-transform: uppercase;
  color: #444;
}

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

.transactions-table tbody tr:hover {
  background-color: #f1f1f1;
}

/* Responsive container */
.table-responsive {
  width: 100%;
  overflow-x: auto; /* Allow horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
  margin-bottom: 20px;
  border: 1px solid #ddd; /* Optional: border for scrollable container */
}

/* Responsive table styles */
@media (max-width: 768px) {
  .transactions-table th, .transactions-table td {
      font-size: 14px;
      padding: 8px;
  }
  
  .transactions-table th {
      text-transform: none; /* Remove uppercase for better readability */
  }
  
  .transactions-table tbody tr:hover {
      background-color: #fafafa; /* Subtle hover effect */
  }
}
