@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
	text-align: center;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/
        /* General styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0; 
            padding: 0;
			font-size: 20px;
        }

        /* Header and navigation menu */
        header {
            background-color: #333;
            color: white;
            padding: 20px;
            font-size: 14px;
            text-align: center;
        }



        /* Table styles */
        table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #ddd;
            margin-top: 5px;
        }

        th, td { 
            padding: 8px;
            text-align: center;
            border-bottom: 1px solid #ddd;
			width: 100%;
        }

        th {
            background-color: #555;
            color: white;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 10px;
        }

  form {
    max-width: 100%;
    margin: 0 auto;
    padding: 5px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    
    padding: 8px 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 20px; /* Increase input text size */
  }



  .lineGroup {
    display: flex;
    flex-wrap: wrap;
  }

  .sublabel1 {
    
    margin-top: 8px;
    font-size: 16px; /* Increase label and sublabel text size */
  }
 .button {
    background-color: #01406B;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
     .button2 {
    background-color: #01406B;
    border: none;
    color: white;
    padding: 9px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button2:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
	     .button3 {
    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    
  }
	  .button4 {
    background-color: #6BD6FC;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button4:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
.formButton  {
	display: inline-block;
    width: 150px;
    height: 75px;
    font-size: 18px; /* Increase button text size */
    border-radius: 4px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
  }

  .formTextfield_Medium {
    padding: 6px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px; /* Increase medium textfield text size */
  }

  .lineGroup.sameLine .formTextfield_Medium {
    font-size: 16px; /* Increase medium textfield text size */
  }

  .formTextfield_Small {
    padding: 6px;
    margin: 4px;
    font-size: 28px; /* Increase small textfield text size */
  }

  .lineGroup.sameLine .formTextfield_Small {
    text-align: left !important;
    font-size: 28px; /* Increase small textfield text size */
  }

  input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sublabel1 {
    margin-top: 4px;
  }

  input[type="radio"]:checked {
    transform: scale(1.2);
    border-color: #1c7cd6;
    background-color: #1c7cd6;
  }

  .lineGroup.sameLine {
    flex-wrap: nowrap;
  }

  .lineGroup.sameLine .formTextfield_Small {
    text-align: left !important;
    font-size: 24px; /* Increase small textfield text size */
  }
        /* Media queries */
        @media (max-width: 600px) {
            header {
                padding: 10px;
            }
/* General styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0; 
            padding: 0;
			font-size: 20px;
        }
            table {
                font-size: 14px;
            }

            footer {
                font-size: 10px;
            }
        }
/
/* Mobile menu styles */
 /* Header and navigation menu */
       
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.menu-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

/* Media query for mobile menu */
@media (max-width: 600px) {
    .menu-icon {
        display: flex;
    }

    header {
        padding: 10px;
        font-size: 13px; /* Adjust as needed */
    }



 
	 form {
    max-width: 100%;
    margin: 0 auto;
    padding: 5px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    
    padding: 8px 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 20px; /* Increase input text size */
  }
 .button {
    background-color: #01406B;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
     .button2 {
    background-color: #01406B;
    border: none;
    color: white;
    padding: 9px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button2:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
	     .button3 {
    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    
  }
	  .button4 {
    background-color: #6BD6FC;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8em;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .button4:hover {
    background-color: #0b7dda;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
  

  .lineGroup {
    display: flex;
    flex-wrap: wrap;
  }

  .sublabel1 {
    
    margin-top: 8px;
    font-size: 16px; /* Increase label and sublabel text size */
  }

  .formButton {
	display: inline-block;
    width: 100px;
    height: 50px;
    font-size: 16px; /* Increase button text size */
    border-radius: 4px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
  }

  .formTextfield_Medium {
    padding: 3px 5px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px; /* Increase medium textfield text size */
  }

  .lineGroup.sameLine .formTextfield_Medium {
    font-size: 28px; /* Increase medium textfield text size */
  }

  .formTextfield_Small {
    padding: 6px;
    margin: 4px;
    font-size: 28px; /* Increase small textfield text size */
  }

  .lineGroup.sameLine .formTextfield_Small {
    text-align: left !important;
    font-size: 26px; /* Increase small textfield text size */
  }

  input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sublabel1 {
    margin-top: 4px;
  }

  input[type="radio"]:checked {
    transform: scale(1.2);
    border-color: #1c7cd6;
    background-color: #1c7cd6;
  }

  .lineGroup.sameLine {
    flex-wrap: nowrap;
  }

  .lineGroup.sameLine .formTextfield_Small {
    text-align: left !important;
    font-size: 26px; /* Increase small textfield text size */
  }
		/* Media queries to adjust layout for smaller screens */
		@media (max-width: 768px) {
			header {
				font-size: x-large;
				padding: 10px;
			}
/* General styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0; 
            padding: 0;
			font-size: 20px;
        }

			table {
				font-size: 18px;
			}

			footer {
				font-size: 12px;
			}
		
		   .label1{
				font-size: 16px;
			}
					/* Styles for the SQL table container */
		.container {
			max-width: 100%;
			margin: 0 auto;
			padding: 10px;
			font-size: 14px;
		}

		table {
			width: 100%;
			border-collapse: collapse;
			border: 1px solid #ddd;
			margin-top: 5px;
			font-size: 18px; 
		}

		th, td {
			padding: 8px;
			text-align: center;
			border-bottom: 1px solid #ddd;
			font-size: x-large;
		}

		th {
			background-color: #555;
			color: white;
		}
			 .label1{
				font-size: x-large;
			}
		  }
		@media (max-width: 600px) {
			header {
				padding: 5px;
				font-size: x-large;
			}


			table {
				font-size: 16px;
			}

			footer {
				font-size: 10px;
			}
			.container {
			max-width: 100%;
			margin: 0 auto;
			padding: 10px;
			font-size: 14px;
		}

		table {
			width: 100%;
			border-collapse: collapse;
			border: 1px solid #ddd;
			margin-top: 5px;
			font-size: 16px;
		}

		th, td {
			padding: 8px;
			text-align: center;
			border-bottom: 1px solid #ddd;
			font-size: x-large;
		}

		th {
			background-color: #555;
			color: white;
		}
		 .label1{
				font-size: x-large;
			}

		@media (max-width: 400px) {
			header {
				padding: 3px;
				font-size: x-large;
			}

			table {
				font-size: 16px;
			}

			footer {
				font-size: 8px;
			}
		
		   .label1{
				font-size: x-large;
			}
					/* Styles for the SQL table container */
		.container {
			max-width: 100%;
			margin: 0 auto;
			padding: 10px;
			font-size: 14px;
		}

		table {
			width: 100%;
			border-collapse: collapse;
			border: 1px solid #ddd;
			margin-top: 5px;
			font-size: 16px;
		}

		th, td { 
			padding: 8px; 
			text-align: center;
			border-bottom: 1px solid #ddd;
			font-size: x-large;
		}

		th {
			background-color: #555;
			color: white;
		}
		
		/* Additional styles for dropdown menu */
		nav {
			display: flex;
			justify-content: space-between;
		}
			}