/* General page styles */
body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    min-height: 100vh;
}

/* Form container */
form {
    background: #020617;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}

/* Headings */
h2, h3 {
    color: #38bdf8;
}

/* Input, select, textarea styling */
input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    margin-bottom: 16px;
    border-radius: 4px;
    border: none;
    background-color: #111827;
    color: white;
}

/* Button styling */
button {
    background: #38bdf8;
    color: #020617;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0ea5e9;
}

/* Labels */
label {
    font-weight: bold;
}

/* Sections */
.section {
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

/* Checkbox group if needed */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Status message */
#status {
    margin-top: 10px;
    font-weight: bold;
}
