/* Container for the form */
.form-vertical {
    display: flex;
    gap: 1rem;
    width: 80%;
    max-width: 400px;
    padding: 1rem;
    flex-direction: column;
}

/* Style for individual form elements */

.form-vertical input,
.form-vertical select,
.form-vertical textarea,
.form-vertical button {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.form-vertical input[type="checkbox"] {
    width: initial;
}


/* Style for labels */
.form-vertical label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-align: left;
}

/* Add some spacing between label-input pairs */
.form-vertical .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Style for the submit button */
.form-vertical button[type="submit"], input[type=file]::file-selector-button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

input.wide-col{width: 300px;}

input[type="text"]:read-only,
input[type="textarea"]:read-only,
input[type="email"]:read-only,
input[type="password"]:read-only,
input[type="url"]:read-only,
input[type="tel"]:read-only,
input[type="search"]:read-only,
input[type="number"]:read-only {
    background-color: #f0f0f0;
    color: #666;
    cursor: not-allowed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #75c9f0;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Active link styling */
.nav-links a.active {
    color: #75c9f0;
    font-weight: bold;
}

/* Content for demo purposes */
.content {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.content th,td {
    text-align: left;
    padding-left: 4px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        padding: 1rem 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 0.5rem 2rem;
        text-align: center;
    }

    .hamburger {
        display: block;
    }
}