/* General container for the homepage content */
.warp9-home {
    padding: 40px;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Individual feature sections */
.feature-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image styling */
.feature-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px #222;
}

/* Text box next to image */
.w9Feature {
    flex: 1;
    min-width: 250px;
}

.w9Feature b {
    font-size: 1.5em;
    color: #fff;
}

.w9Feature h2 {
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
}

.w9Feature hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #666;
}

.w9Feature ul {
    list-style-type: disc;
    padding-left: 20px;
}

.w9Feature li {
    margin-bottom: 8px;
}

.code-input-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.code-input {
  width: 50px !important;
  height: 60px;
  font-size: 32px !important;
  text-align: center;
  border: 2px solid #ccc  !important;
  border-radius: 8px  !important;
  outline: none  !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.code-input:focus {
  border-color: #3377cc;
  box-shadow: 0 0 5px rgba(51, 119, 204, 0.5);
}

.span_link {
    color: #3377cc;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.span_link:hover {
    text-decoration: underline;
}

.create_account_error {
  color: red;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.create_account_error.ok {
    color: green;
}

.basic_content {
    display: flex;
    flex-direction: row;
    gap: 0px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

.basic_sidebox {
    display: inline-block;
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    height: 100vh;
    margin: 0px;
    border: 0px solid black;
    padding: 0px;
    background: white;
    color: black;
    vertical-align: top;
    border-right: 1px solid black;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.2);
}

.basic_body {
    flex: 1;
    display: inline-block;
    padding: 20px;
    color: white;
    width: 100%;
    height: calc(100vh - 52px);
    min-height: calc(100vh - 52px);
    max-height: calc(100vh - 52px);
    overflow-y: scroll;
}

.ship_list {
    padding-bottom: 50px;
}   