body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
	 width: 90%;
}

@media only screen and (max-width: 767px) {
    .container {
    width: 99% !important;
	padding: 2px  !important;
	}
	
	.group{
	padding:10px 2px 10px 2px !important;
	margin: 10px 2px 10px 2px!important;
	}
	
	label{
		font-weight:normal !important;
		font-size: 12px !important;
	}
}

h1 {
    margin-bottom: 10px;
    font-size: 20px;
}

form {
    display: inline-block;
    text-align: left;
    width: 100%;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.group{
	padding:20px;
	margin: 20px;
	border: 1px solid #007bff;
	border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    width: 30%;
    font-weight: bold;
}

.input-field {
    flex-grow: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.button-container {
    margin-top: 20px;
    text-align: center;
}

.button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.image-button{
    width:25px;
	height:25px;
	margin-right:15px;
}

.image-button:hover{
	width:30px;
	height:30px;
	cursor:pointer;
}

.button:hover {
    background-color: #0056b3;
}

canvas {
    margin: 20px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.header{
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
	gap:15px;
}

.footer{
	color: #ccc;
	margin-top:20px;
}

.footer a{
	color: #ccc;
	text-decoration:none;
}

.footer a:hover{
	color: #007bff;
}

@media only screen and (max-width: 767px) {
            .copy {
                display: none; /* Hide button on mobile devices */
            }
			
			.mobile-info{
				display: flex !important;
				margin:10px;
				color:#aaa;
			}
}

.mobile-info{
				display: none;
}

.hidden{
display:none;
}

.checkbox-container {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95em;
    max-width: 600px;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
}

.button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.checkbox-container label{
	width: 100%;
}


