body {
    font-family: Arial, sans-serif;
    padding: 10px; /* Reduced from 20px */
}
.form-group {
    margin-bottom: 2px; /* Further reduced */
}
label {
    display: block;
    margin-bottom: 1px; /* Further reduced */
}

yellow-mark {
   background-color: #ffff66; /* Darker light yellow */
   font-weight: bold;
   font-size: .9em;
   color: black;
}

.info {
    font-weight: bold;
    font-size: .8em;
    color: red; /* Or any color that fits the form's design but stands out */
    margin-bottom: 10px; /* Adjust based on your layout */
}
button {
    width: 250px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px; /* Further reduced */
    margin: 2px 0; /* Further reduced */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}
button:hover {
    background-color: #14ee1f; /* Darker shade of green for contrast */
    color: #540101;
    font-weight:bold;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.8); /* Glowy effect on hover */
}
.invalid-feedback {
    color: red;
}
.invalid {
    border-color: red;
}
label:has(+ input:required):after {
    content: ' *';
    color: red;
}
.required-mark {
    color: red;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tshirt-preview {
    flex-basis: 40%;
    padding: 10px; /* Consistent with other reductions */
}
form#registrationForm {
    flex-basis: 50%;
    padding: 10px; /* Reduced */
}

.size-option {
    display: inline-block; /* Aligns the options horizontally */
    margin-right: 20px; /* Adds space between the options */
}

.size-option label,
.size-option select {
    display: block; /* Makes label and select stack vertically */
    text-align: center; /* Center-aligns the text */
    margin-bottom: 5px; /* Adds a small space between the label and select box */
}

.size-option select {
    width: 80px; /* Adjust the width as needed, considering enough space for two digits */
    margin: 0 auto; /* Centers the select box below the label */
}

.t-shirt-section{
    margin-top: 20px;
    margin-bottom: 20px;
    }

#firstNameFeedback{
    display: none;
    }
#lastNameFeedback{
    display: none;
    }
#emailFeedback{
    display: none;
    }
#attendeesFeedback{
    display: none;
    }
#roomsFeedback{
    display: none;
    }
#roomTypeFeedback{
    display: none;
    }
#phoneNumberFeedback{
    display: none;
    }
#TshirtSizeData{
    display: none;
    }

#tshirtImage{
    max-width: 100%;
    height: auto;
    }

.andrews-preview {
    flex-basis: 100%;
    padding: 5px; /* Consistent with other reductions */
}

#andrewsImage{
    top:0px;
    max-width: 100%;
    height: auto;
    }

.button2 {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effect */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    white-space:nowrap;
    width: auto;
    margin: 0 auto;
}

.button2:hover {
    background-color: #14ee1f; /* Darker shade of green for contrast */
    color: #540101;
    font-weight:bold;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.8); /* Glowy effect on hover */
}

table {
    width: 50%;
    border-collapse: collapse; /* Removes double borders */
    font-family: Arial, sans-serif; /* A commonly used web-safe font */
	margin-left: auto;
	margin-right: auto;
}

h1{
	text-align:center;
	}

.submit {
/*  text-align: center;*/
  display: block;
  margin-left:120px;
  font-weight: bold;
}
.submit:hover{
	background-color:red;
	color:white;
	}


table, th, td {
    border: 1px solid #c0c0c0;
}

th, td {
    padding: 1px 8px; /* Spacing inside each cell */
    text-align: left;
}

/* Header Styles */
th {
    background-color: #007ACC;  /* A nice blue color */
    color: white; /* White text for headers */
    font-weight: bold;
}

/* Alternating Row Colors */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

.wide-input {
/*	width: 100%;*/
	width : 500px;
	}

.no-wrap td{
    white-space:nowrap;
    }

.no-wrap-hideable td{
    white-space:nowrap;
    }

.no-wrap-hideable thead th{
    white-space:nowrap;
    position: sticky;
    top: 0;
    z-index: 100; /* Makes sure the header is above other content */
    }



.table-container{
    overflow-y: auto;
    max-height:600px;
    }

.no-wrap thead th{
    white-space:nowrap;
    position: sticky;
    top: 0;
    z-index: 100; /* Makes sure the header is above other content */
    }

.paid{
    background-color:#14ee1f
    }
.unpaid{
    color: white;
    background-color:#f34906
    }
.numeric{
    text-align: right;
    }

/* style.css */
.registration-closed {
    text-align: center;
    margin-top: 50px;
}

.registration-closed h2 {
    color: #D8000C;
    font-size: 24px;
}
.error {
    color: #D8000C;
}

.logout {
    position: fixed; /* or absolute */
    right: 10px;
    top: 10px;
    background: #f09d51;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.no-border {
    border-collapse: collapse; /* Ensures borders are treated as a single line, important when removing borders */
    border: none;
}

/* Apply to the cells within the table */
.no-border th,
.no-border td {
    border: none;
    padding: 2px; /* Updated to apply padding uniformly */
}

input:focus, textarea:focus, select:focus {
    border: 4px solid #208cf1 !important;
    background-color: #EEF7FF !important;
}

input, select {
    width: 280px;
    padding: 2px; /* Further reduced */
    margin-top: 1px; /* Further reduced */
    margin-bottom: 1px; /* Further reduced */
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
 }

.larger-h3-font{
    font-size: 1.17em;
    font-weight: bold;
    text-align: center;
}
.trademark {
   vertical-align: super;
   font-size: 0.6em;
  }
