/* Style for the navigation bar container */
.TopNav {
  display: flex;                     /* Use flexbox for horizontal layout */
  justify-content: space-evenly;     /* Evenly space items */
  align-items: center;               /* Vertically center items */
  list-style-type: none;             /* Remove bullets */
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #5998ac;
}

/* Remove float, use flex children instead */
.TopNav li {
  /* No float needed */
  /* Flex children are already horizontal */
}

/* Style links and the dropdown button */
.TopNav li a, .TopNav .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on hover */
.TopNav li a:hover, .TopNav .dropdown:hover .dropbtn {
  background-color: red;
}

/* Position the dropdown container */
.TopNav li.dropdown {
  position: relative;                /* Needed for absolute dropdown */
  display: inline-block;
}

/* Hide dropdown content by default */
.TopNav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style dropdown links */
.TopNav .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Change dropdown link color on hover */
.TopNav .dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown menu on hover */
.TopNav .dropdown:hover .dropdown-content {
  display: block;
}

/* Content container: white at 25% opacity */
.content-container {
  background: rgba(255, 255, 255, 0.25); /* White with 25% opacity */
  margin: 40px auto;
  padding: 30px 40px;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.section-header {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #222; /* Adjust color as needed */
}

/* Body text: left-aligned, readable size */
.body-text {
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333; /* Adjust color as needed */
  margin-bottom: 20px;
}

body {  
  background-image: url('Background-Light.jpg');  
  background-size: cover;  
  background-position: center;  
  background-repeat: no-repeat; 
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-box {
  background: rgba(89, 152, 172, 0.10);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 18px;
}

.purchase-btn {
  background: #5998ac;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 22px;
  font-size: 1em;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 8px;
}

.purchase-btn:hover {
  background: red;
}

.dropdown-list {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 180px;
}

.dropdown-list li {
  padding: 9px 15px;
  color: #333;
  cursor: pointer;
}

.dropdown-list li.coming-soon {
  color: #aaa;
  cursor: not-allowed;
}

.dropdown-list li:not(.coming-soon):hover {
  background: #f1f1f1;
}

.credit-balance-box {
  text-align: right;
  margin-bottom: 18px;
}

.credit-label {
  font-weight: bold;
  color: #5998ac;
}

.deploy-section {
  text-align: center;
  margin-top: 40px;
}

.deploy-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 18px 0;
}

.deploy-option-btn {
  background: #5998ac;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 22px;
  font-size: 1em;
  cursor: pointer;
  min-width: 80px;
}

.deploy-option-btn:hover {
  background: red;
}

.deploy-main-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 40px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 24px;
}

.deploy-main-btn:hover {
  background: #5998ac;
}
