body {
    font-family: 'Helvetica', sans-serif;
    margin: 20px;
    background-color: #F0F2F6;
}

.container {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;        /* center */
    margin-bottom: 20px;
    max-width: 960px;         /* limit width like concessions */
    width: 100%;
}

h1 {
    color: #2E294E;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

/* Anchor styled as button (Reserve links, etc.) */
a.btn, .btn {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white !important;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

table {
    max-width: 100%;
    border-collapse: collapse;
}

td, th {
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    border-bottom: 2px solid #2E294E;
    text-align: left;
}

td {
    font-size: 12px;
}

th {
    background-color: #4CAF50;
    color: white;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    width: 100px;
    text-align: right;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    margin-left: 15px;
}

.navigation {
    margin: 20px 0;
    text-align: left;
}

.navigation a {
    margin: 0 15px;
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
}

.flash-message {
    font-weight: bold;  /* Makes the text bold */
    font-size: 1.5em;  /* Makes the text 50% larger than the base font size */
}

/* Styling for the table layout used on batting cages pages */
.timeslot-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.timeslot-table th, .timeslot-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

.timeslot-table th {
    background-color: #4CAF50;
    color: white;
}

/* Utility: generic table class (used by Duty pages) */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

.table th {
    background-color: #4CAF50;
    color: white;
}

/* Make the table responsive */
@media (max-width: 800px) {
    .timeslot-table,
    .table {
        font-size: 12px;
    }
}