/* Global Styles */
body {
    background-color: #1a1a2e;
    color: #eaeaea;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* Container */
.container {
    max-width: 600px;
    width: 100%;
    background-color: #16213e;
    border-radius: 10px;
    padding: 40px 40px; /* Added padding on both sides */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Heading */
h1 {
    font-size: 1.8em;
    color: #f05454;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Control Styles */
label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

textarea, input[type="text"] {
    width: 100%;
    background-color: #1a1a2e;
    border: 1px solid #30475e;
    color: #eaeaea;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 20px; /* Increased margin for spacing */
    resize: vertical;
}

/* Button Styles */
button {
    width: 100%;
    background-color: #f05454;
    color: #eaeaea;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
button:hover {
    background-color: #e94e4e;
}

/* Radio & Checkbox Groups */
.options {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
}

.options label, .sort-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

/* Output Styles */
#output {
    background-color: #1a1a2e;
    color: #d1d1d1;
    border: 1px solid #30475e;
    border-radius: 5px;
    margin-top: 20px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
}

/* Inline Form Items */
.inline-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Align the form properly */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px; /* Increased spacing for alignment */
}
