:root {
  --accent_disabled: #808080;
  --accent_light: #3271bf;
  --accent_dark: #27588b;
}
html{
    font-size: larger;
}

body{
    font-family: sans-serif ;
}

h3{
    text-align: center;
    color: var(--accent_dark);
}
h2{
    color: var(--accent_dark);
}
h1{
    color: var(--accent_dark);
}
p{
    text-align: center;
}

footer {
	text-align: center ;
    height: 10em;
	width: 100hw;
}
footer div{
	position: relative;
	top: 80%;
	transform: translateY(-50%);
}
footer a{
	clear: both;
	text-decoration: none;
    color: white;
    font-weight: bold;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 80px;
    padding-right: 80px;
    border-radius: 4px;
    background-color: var(--accent_dark);

}

form{
    width: 80%;
    margin-left: 10%;
}

label{
  padding-right: 10px;
  text-align: right;
  flex: 0 0 200px; /* Set a fixed width for the label */
  text-align: right; /* Align the label text to the right */
}

input{
    max-width: 300px;
    flex: 1;
}

input[type="submit"] {
  padding: 10px 40px;
  margin-top: 20px;
  background-color: var(--accent_dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="checkbox"]:checked{
    accent-color: var(--accent_dark);
}

input[type="submit"]:disabled {
    background-color: var(--accent_disabled);
    pointer-events: none;
}

input[type="submit"]:hover {
  background-color: var(--accent_light);
}

input[type=text], input[type=email]{
    box-sizing: border-box;
    min-width: 300px;
    width: 30%;
    border-radius: 2px;
    border: 1px solid #CCC;
    outline: none;
    cursor: pointer;
    margin-bottom: 1em;
}

input[type=text]:focus, input[type=email]:focus{
    background-color: lightblue;
}

input[type=text]:hover, input[type=email]:hover{
    background-color: var(--accent_light)
}

.form_group {
  margin-bottom: 5px;
  margin-left: auto;
  display: flex;
  align-items: flex-start; /* Center elements vertically */
  justify-content: center; /* Center form groups horizontally */
}

.select_group_heading{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 2px;
    display: flex;
}

.select_group_inner{
    background-color: #EEE;
    border-radius: 5px;
    box-shadow: 5px 5px #DDD;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 10px;
    display: flex;
}

.ticketname{
    width: 80%;
    min-width: fit-content;
}

.ticketprice{
    width: 10%;
    min-width: fit-content;
}

.ticketchange{
    width:  20%;
    text-align: center;
    display: flex;
    justify-content: center;
    min-width: fit-content;
}

.ticketchange_val{
    width: 20%;
}

.minus_btn{
    width: 25px;
    height: 25px;
    background-image: url(resources/minus_icon.svg);
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
}

.plus_btn{
    width: 25px;
    height: 25px;
    background-image: url(resources/plus_icon.svg);
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
}

ul {
    list-style: "*  ";
    padding: 0;
}
