/*
CGHMN Signup Page - A PHP project to ease the process of joining CGHMN.
Copyright (C) 2026 Logan C. et al. loganius@cghmn.org

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
this program.  If not, see <http://www.gnu.org/licenses/>.

Many thanks to Jonas Luehrig (Snep) for all his contributions to this project,
both through writing code and providing advice.
*/

body {
    margin: 0;
}

#topbar {
    background-color: #004d7b;
}

#titlebar {
    margin: 0;
    padding-left: 20px;
}

#menubar {
    position: sticky;
    margin-top: 10px;
}

#menubar ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    height: 40px;
    padding: 0 10px;
    width: 100px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: black;
}

.menu-item:hover {
    background-color: #00639c;
}

.data-table {
    border: 1px solid black;
    margin: 10px auto;
}

.data-table tbody tr td {
    border: 1px solid black;
}

.data-table tbody tr th {
    border: 1px solid black;
}

.form-header {
    margin: 10px 0 0 10px;
}

.form {
    margin-left: 10px;
}

.form-label {
    text-align: right;
}

.data-table-footer {
    margin-left: 10px;
}