body {
	font-family: Arial, sans-serif;
	background-color: #ffffff;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

/* Estilo do container principal */
#mainContainer {
	display: flex;
	flex-direction: column;
	/* Isso vai alinhar os filhos (form e generatedUrlContainer) em coluna */
	align-items: center;
	/* Isso vai centralizar os filhos horizontalmente */
	justify-content: flex-start;
	/* Isso alinha os filhos ao topo */
	width: 100%;
	/* Ajuste para a largura desejada */
	max-width: 100%;
	/* Ajuste para a largura máxima desejada */
	margin: auto;
	/* Isso centraliza o container principal na página */
}


form {
	display: block;
	flex-direction: column;
	padding: 10px;
}


input[type="text"],
button,
textarea {
	width: 100%;
	/* Ajuste a largura conforme necessário, ou remova para largura automática */
	margin-bottom: 10px;
	/* Espaçamento entre os elementos */
}


input[type="text"] {
	border: 1px solid white;
	border-radius: 4px;
	padding: 5px;
	font-size: 16px;
}

button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #0056b3;
}

#generatedUrl {
	border: 1px solid #ccc;
	background-color: #eee;
}

a {
	text-decoration: none;
	color: white;
	text-align: center;
	display: inline-block;
	margin-top: 10px;
}

#shareEmail,
#shareWhatsapp {
	background-color: #4CAF50;
	/* Green */
	padding: 10px 20px;
	border-radius: 4px;
}

#shareEmail:hover,
#shareWhatsapp:hover {
	background-color: #45a049;
}

/* Estilo do container do input */
.input-container {
	position: relative;
	margin-bottom: 10px;
	flex: 1;
	/* Causes items to share the available space */
	min-width: 250px;
	/* Prevents the items from becoming too narrow */

	/* Espaçamento entre os containers de input */

}

/* Estilo do label e do ícone de informação */
.input-container label {
	display: flex;
	align-items: center;
	/* Centraliza verticalmente o label e o ícone de informação */
	padding-bottom: 10px;
}

/* Estilo do ícone de informação */
.info {
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin-left: 5px;
	text-align: center;
	color: #fff;
	background-color: #007bff;
	border-radius: 50%;
	/* Cria o círculo */
	cursor: help;
}

/* Estilo do tooltip */
.info:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	background: #000;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	top: 50%;
	transform: translateY(-50%);
	/* Centraliza o tooltip verticalmente */
	left: 0px;
	white-space: nowrap;
	z-index: 1000;
	font-size: 14px;
}

/* Estilo do input */
.input-container input[type="text"] {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	/* Espaçamento entre o label e o input */
	border: 1px solid #ccc;
	border-radius: 4px;
}



.flex-container {
	display: flex;
	justify-content: space-between;
	/* Distributes space between and around items */
	align-items: center;
	/* Align items vertically */
	flex-wrap: wrap;
	/* Allow items to wrap as needed */
	gap: 20px;
	/* Optional: adds gap between items */
}
.input-container input, .flex-container button {
	width: 100%;
	max-width: 300px; /* Set your desired width */
	background-color: white; /* Remove grey background */
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 4px;
}
.input-container label {
	display: block;
	margin-bottom: 5px;
}
.input-container {
	margin-bottom: 20px;
}
.flex-container {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.flex-container button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	border-radius: 4px;
}
.flex-container button.cancel {
	background-color: #6c757d;
}