body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.form-container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top: 15px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.time-selects {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

.time-selects select {
    flex: 1;
}

.time-picker-group {
    margin-bottom: 15px;
}

/* Hide conditional sport options by default */
.sport-options {
    display: none; 
}

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

ul li, ol li {
    margin-bottom: 5px;
}

.radio-group label, .pricing-fields label {
    display: inline;
    font-weight: normal;
    margin-right: 15px;
}

input[type="radio"], input[type="checkbox"] {
    margin-right: 5px;
}

button {
    background: linear-gradient(135deg, #f26522 0%, #e52d0e 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
    transition: all 0.2s;
}

button:hover {
    background: linear-gradient(135deg, #e55a1a 0%, #d12a0d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.red {
	color:#CC0000;
	font-weight:bold;
	text-align:center;
}

input[type="text"].text-input-short, input[type="number"].text-input-short  {
	width:40%;
}