body {
  font-family: Arial, sans-serif;
  margin-top: 20px;
  text-align: center;
  background: #141e30;
  background: -webkit-linear-gradient(to right, #243b55, #141e30);
  background: linear-gradient(to right, #243b55, #141e30);
  color: #fff;
  padding: 12px;
}
a {
  color: #f3f3f3;
}
img.logo {
  width: 150px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 4px 10px;
}
input,
select,
button {
  margin: 10px;
  padding: 8px;
  width: 80%;
  max-width: 400px;
}
/* Loader styles */
.loader-container {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Disable form while loading */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.submitbutton:hover {
  background: #24435c;
}

.submitbutton {
  background: #2196f3;
  color: #fff;
  font-weight: bold;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 13px;
  font-size: 1rem;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
}
h2 {
  text-align: center;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-item h3 {
  cursor: pointer;
  margin: 0;
}
.faq-item p {
  display: none;
  margin: 5px 0 0;
  padding-left: 10px;
}
form#awsForm {
  border: 1px solid #6f6f6f;
  width: fit-content;
  margin: 0 auto;
  padding: 40px;
  box-shadow: inset 0 0 20px 4px #9e9e9e;
  border-radius: 10px;
}

iframe {
  max-width: 100%;
}
svg.bi-rocket-takeoff-fill {
  vertical-align: middle;
}
div#result {
    border: 1px solid;
    display: inline-block;
    padding: 10px;
    margin: 10px;
	background: #5d5d5d;
    border-radius: 5px;
}
.design-option {
display: inline-block;
margin: 10px;
cursor: pointer;
}

.design-option input[type="radio"] {
display: none;
}

.design-option label {
display: block;
border: 2px solid #ccc;
border-radius: 6px;
overflow: hidden;
transition: border-color 0.3s;
font-size: 12px;
}

.design-option input[type="radio"]:checked + label {
border-color: #007bff;
box-shadow: 0 0 8px 2px #2196F3;
}

.design-option img {
display: block;
max-width: 150px;
height: auto;
}
/* Optional: Basic styling for the container and layout */
.design-option {
  display: inline-block; /* Arrange options side-by-side */
  margin: 5px;           /* Add some spacing */
}

/* Style the label (image wrapper) */
.design-option label {
  display: block; /* Make the label a block element to contain the image properly */
  padding: 5px;    /* Add padding so the border isn't touching the image */
  border: 3px solid transparent; /* Default transparent border (prevents layout shifts) */
  cursor: pointer;  /* Indicate it's clickable */
  transition: border-color 0.3s ease; /* Smooth transition for the border color */
}

/* Style the image inside the label */
.design-option label img {
  display: block; /* Remove extra space below the image */
  max-width: 100px; /* Example size, adjust as needed */
  height: auto;
}

/* --- The Key Part --- */
/* When the radio button is checked, change the border of the *next* label */
.design-option input[type="radio"]:checked + label {
  border-color: dodgerblue; /* Or your desired highlight color */
  /* You could also use: border: 3px solid dodgerblue; if you didn't set a transparent default */
  box-shadow: 0 0 8px 2px #2196F3;
}

/* Optional: Hide the actual radio button visually */
.design-option input[type="radio"] {
  opacity: 0;        /* Make it invisible */
  position: absolute; /* Take it out of the document flow */
  width: 0;          /* Ensure it takes no space */
  height: 0;
}