body {
    font-family: Arial, sans-serif;
    background: linear-gradient(#30165c, #683caf);
    color: #fff;
    text-align: Left;
    padding: 50px;
    background-size: cover;
    min-height: 100vh;
    background-attachment: fixed;
}

.error-message,
.content {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 10px;
    padding: 40px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: hsl(0, 0%, 0%);
}

p {
    color: #333;
}

.button,
button,
a.button {
    background-color: #0084ff;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    /* Ensures font consistency */
    font-size: 16px;
    /* Set a specific font size */
    outline: none;
    /* Removes the focus outline on click */
    line-height: normal;
    /* Resets any default line-height */
    box-sizing: border-box;
    /* Ensures padding and border are included in width/height */
}

.logo {
    margin-bottom: 20px;
    max-width: 300px;
    width: 100%;
    height: auto;
}

#loadingModal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#loadingText {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.container {
    width: 100%;
    /* Uses full width of the space it's in, adjust if necessary */
    max-width: 300px;
    /* Sets a maximum width for the container */
    margin: 0 auto;
    /* Centers the container horizontally */
    padding: 20px;
    /* Adds some padding inside the container */
}

.form-group {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.form-group label {
    width: 100px;
    margin-right: 10px;
}

input[type="text"],
input[type="password"] {
    flex-grow: 0;
    width: auto;
    /* Ensures input fields take the necessary space but not more */
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(#30165c, #683caf);
    color: #fff;
    text-align: center;
    padding: 50px;
    background-size: cover;
    min-height: 100vh;
    background-attachment: fixed;
}

.content {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 10px;
    padding: 40px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}

.ip-address,
.copy-button {
    background-color: #f4f4f4;
    color: #333;
    padding: 5px 10px;
    margin-top: 5px;
    display: inline-block;
    border-radius: 5px;
}

.ip-address:hover,
.copy-button:hover {
    background-color: #e4e4e4;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

/* Dropdown Styles */
select {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    /* Removes the focus outline on click */
}

select:hover {
    border-color: #bbb;
}

select:focus {
    border-color: #888;
}

/* Command Prompt CSS */
#commandPrompt {
    padding: 10px;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    border: 2px solid grey;
    box-shadow: 0 0 10px grey;
    font-family: 'Courier New', monospace;
    color: rgb(255, 255, 255);
    background-color: black;
}

.input-line,
#output {
    text-align: left;
    padding-left: 10px;
    /* This padding aligns text inside the simulated terminal */
}

#commandPrompt {
    padding: 10px;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    border: 2px solid grey;
    box-shadow: 0 0 10px grey;
    font-family: 'Courier New', monospace;
    color: rgb(255, 255, 255);
    background-color: black;
}

#typedText {
    margin-left: 0.2em;
    /* Adjust as needed for exact alignment */
}

.cursor {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#output {
    text-align: left;
    /* Aligns text to the left */
    padding-left: 10px;
    /* Simulates a tab indentation */
    margin-top: 5px;
    /* Adds a bit of space between the command and the results */
    white-space: pre-wrap;
    /* Maintains spacing and formatting, allows natural text wrapping */
    font-family: 'Courier New', monospace;
    /* Ensures consistency with the command prompt */
    color: rgb(255, 255, 255);
    background-color: black;
}

.instructions {
    max-width: 600px;
    /* Matches the width of commandPrompt */
    margin: 20px auto 50px;
    /* Centers the instructions block */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    color: #333;
    font-family: Arial, sans-serif;
    text-align: left;
}

.instructions ol {
    padding-left: 40px;
    /* Adjust this value to line up exactly with the commandPrompt text */
    list-style-position: inside;
    /* Ensures numbers are included in the alignment */
}

.instructions li {
    margin: 8px 0;
    /* Provides spacing between list items */
    text-align: left;
    /* Aligns the text to the left to match the other content */
}

.instructions p,
.instructions ol,
.instructions li {
    margin: 10px 0;
    font-size: 16px;
    /* Adjust size as necessary */
}

.instructions code {
    background-color: #f4f4f4;
    border-radius: 5px;
    padding: 2px 5px;
    font-family: 'Courier New', monospace;
}