body {
    font-family: Arial, Geneva, Helvetica, sans-serif;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0;
    box-sizing: border-box;
}

/* Links */
a:link {
    text-decoration: none;
    color: #0000CC;
}

a:visited {
    text-decoration: none;
    color: #0000CC;
}

a:hover {
    text-decoration: underline;
    color: #0000CC;
}

/* Header link style */
.headerlink {
    font-size: 12px;
    font-weight: bolder;
    color: #FFFFFF;
    text-align: right;
}

/* Flexbox layout for header */
.header {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    position: relative; /* Ensures the hamburger menu is still positioned on the right */
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.header .logo img {
    max-width: 100%;
    height: auto;
}

/* Logo Styling */
.logo img {
    max-height: 100px; /* Adjust as needed */
    justify-content: center; /* Center the logo horizontally */
    align-items: center;
}

.header-right {
    text-align: right;
}

.top_links {
    display: block;
    margin-bottom: 10px;
}

.header h2 {
    color: #0066CC;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

/* Typography */
h1 {
    font-size: 18px;
    color: #FFFFFF !important;
    background-color: #006699;
    margin: 0;
    padding: 3px 0;
    text-align: center;
    width: 100%;
    font-weight: bolder;
}

h2 {
    font-size: 14px;
    color: #000000;
    margin: 2px 5px;
    padding: 5px;
    width: auto;
    font-weight: normal;
}

h3 {
    font-size: 16px;
    color: #000000;
    background-color: #FFCC00;
    margin: 0;
    padding: 5px 0;
    text-align: center;
    width: 100%;
    font-weight: bolder;
}

p {
    font-size: 12px;
    color: #000000;
    padding: 3px 10px 10px;
    margin: 5px;
}

/* Form styles */
.form-container {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 5px;
}

.form-group div {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left-align the radio buttons */
    gap: 10px; /* Adds spacing between radio buttons and labels */
    max-width: 300px; /* Adjust this to control the width of the radio button container */
}

.form-group div label {
    display: inline-flex; /* Ensures the radio button and label are on the same line */
    align-items: center; /* Vertically aligns radio buttons and text */
    gap: 5px; /* Adjust spacing between the radio button and the label */
    margin-bottom: 0;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.form-group .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* Form buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-buttons input {
    padding: 10px 20px;
    border: none;
    background-color: #0066CC;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.form-buttons input:hover {
    background-color: #004080;
}

/* Errors */
.error {
    font-size: 12px;
    color: #FF0000;
    text-align: left;
    padding: 5px;
    font-weight: bold;
}

.error_highlighted {
    font-size: 12px;
    color: #FF0000;
    text-align: left;
    font-weight: bold;
    background-color: YELLOW;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Miscellaneous styles */
.tdlink, .address1, .address2, .RED, .YELLOW, .GREEN, .highlight_cabin,
.cabins, .ropes, .waterfront, .pool, .meals, .arrivals, .lodges, .campfire,
.OQ-MH, .meeting, .cabinsx, .ropesx, .waterfrontx, .poolx, .mealsx, .lodgesx,
.campfirex, .OQ-MHx, .meetingx, .select_list, .side_links, .privacy, .loginas, 
.activity_has, .activity_has_not, .controlled, .Small_Print, .Medium_Print, 
.epcalendar, .UpperLinks, .FooterTextCenter, .Status_OtherPage, .Status_ThisPage {
    /* Existing styles remain unchanged, keeping the structure intact */
}

/* Updated link styles within UpperLinks */
.UpperLinks a:link, .UpperLinks a:visited {
    color: #069;
    text-decoration: none;
}

.UpperLinks a:hover, .UpperLinks a:active {
    color: #999;
    text-decoration: none;
}

/* Status Page Styles */
.Status_OtherPage a:link, .Status_OtherPage a:visited {
    color: #069;
    text-decoration: none;
}

.Status_OtherPage a:hover, .Status_OtherPage a:active {
    color: #999;
    text-decoration: none;
}
/* Hamburger Icon */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
}

.hamburger-menu {
    display: flex;
    justify-content: flex-end;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hidden Dropdown Menu */
.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust as per your needs */
    right: 10px;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 10px;
    border-radius: 5px;
}
.dropdown-menu a {
    padding: 10px;
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: bold;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Display Menu when Clicked */
.show {
    display: flex;
}

/* Main Content Styling */
.main-content h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

