html {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #384B5EFF;
  margin: 0px 75px 20px 75px;
  overflow-x: hidden;
  /* max-width:fit-content; */
}

header {
  padding: 25px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: fixed; */
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 100;
  /* border-bottom: 1px solid #F2F2F2; */
}

.logo {
  width: 175px;
  height: auto;
}

.header-right {
  margin-right: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-right a {
  color: #ffffff;
  margin: 0 10px 0 10px;
  text-decoration: none;
  font-size: 14.5px;
}

.header-right a:hover {
  color: #EB6769FF;
}

.header-right a:nth-child(3) {
  color: #EB6769FF; 
}

.nav-container {
  position: relative;
  display: inline-block;
}

.nav-toggle {
  padding: 10px 10px;
  /* background-color: #333; */
  color: white;
  cursor: pointer;
  user-select: none;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f9f9f9;
  min-width: 125px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.nav-item {
  color: #333 !important;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
}

.nav-item:hover {
  color: #EB6769FF !important;
}

/* Show menu on hover of either toggle or menu itself */
.nav-container:hover .nav-menu {
  display: block;
}

.nav-toggle:hover {
  background-color: #EB6769FF;
  border-radius: 4px;
}

.profile-pic {
  width: 22.5px;
  height: 22.5px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 2.5% auto;

}

.plans-table {
  flex: 1;
  min-width: 0;
}

.plans-table h2 {
  margin-bottom: 15px;
  color: #E0E6E9FF; /* Light color for header text */
}

.plans-table table {
  width: 100%;
  border-collapse: collapse;
  background: #4A5E71FF; /* Slightly lighter than body background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 5px;
  overflow: hidden;
}

.plans-table th,
.plans-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #5A6E81FF; /* Subtle border color */
  color: #E0E6E9FF; /* Light text color */
}

.plans-table th {
  background-color: #3F5366FF; /* Darker shade for header */
  font-weight: bold;
}

.plans-table tr:last-child td {
  border-bottom: none;
}

.plans-table tr:hover {
  background-color: #546A7DFF; /* Slightly lighter hover effect */
}

.text-div {
  flex: 1;
  min-width: 0;
  padding: 20px;
  margin-top: 10%;
}

.p-text {
  padding: 20px;
}

.text-div .bg-light {
  background-color: #4A5E71FF; /* Matching the table background */
  color: #E0E6E9FF; /* Light text color */
}

.text-div h2 {
  color: #E0E6E9FF; /* Light header color */
}

.text-div .text-primary {
  color: #87CEEBFF; /* Light sky blue for the email */
}

/* .text-div {
  position: fixed;
  top: 35%;
  left: 32%;
  width: 36%;
  height: 36%;
  background-color: rgb(255, 255, 255, 0.95);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

footer {
  background-color: #44475b;
  font-size: 14px;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 0;
  font-size: 15px;
}

footer p {
  color: #ffffff;
}