/* ------ Translator Page Style ------ */

.info-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}

label {
	font-weight: bold;
    font-weight: 550;
	color: #333;
}
textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
	background-color: rgba(241, 241, 245, 0.5);
	font-size: 13px;
	resize: vertical;
	min-height: 100px;
	font-family: 'Cinzel', sans-serif;
}

textarea:focus {
	outline: 2px solid #ccc;
}

input[type="button"] {
    background-color: rgba(37, 37, 42, 0.9);
    color: rgba(255,255,255, 0.85);
    padding: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
	font-family: 'Cinzel', sans-serif;
	font-weight: 550;
	transition: 0.7s ease;
	width: fit-content;
	padding-left: 20px;
	padding-right: 20px;
}
input[type="button"]:hover {
     background-color: rgba(65, 71, 78, 0.9);
	 color: rgba(255,255,255, 1);
}
.output, #traduzione {
    margin-top: 20px;
    display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.output .translated, .translated {
    color: #333;
	width: 100%;
	background-color: rgba(241, 241, 245, 0.9);
	border-radius: 5px;
	padding: 10px;
}
.output .label, .label {
    color: #333;
	font-weight: bold;
	font-weight: 550;
	margin-bottom: 5px;
}

/* ------ Singular Question Style ------ */

/* Question Button */


/* Media Queries per dispositivi mobili */
@media (max-width: 860px) {
	
	textarea {
		font-size: 16px;
	}
}

.tab-button {
	padding: 10px 15px;
	cursor: pointer;
	background-color: rgba(37, 37, 42, 0.9);
    color: rgba(255,255,255, 0.85);
	border: none;
	border-radius: 50px;
	transition: background-color 0.3s ease;
	font-family: 'Cinzel', sans-serif;
}

.tab-button:hover {
	background-color: rgba(65, 71, 78, 0.9);
	color: rgba(255,255,255, 1);
}

.tab-content {
	display: none;
	color: black;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease;
	padding: 20px;
}

.tab-content.active {
	display: flex;
}

.tab-button.active {
	background-color: rgba(65, 71, 78, 0.9);
	color: rgba(255,255,255, 1);
	font-weight: bold;
}

.tab-button-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	padding-bottom: 0px;
}

#richieste {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	font-size: 13px;
	gap: 15px;
}

#richieste p {
	width: 100%;
	line-height: 22px;
}

#richieste p select {
	padding: 3px;
	text-align: center;
	margin-left: 5px;
	width: 100px;
	border: none;
	border-radius: 50px;
	background-color: rgba(220,220,224, 0.8);
	position: relative;
	float: right;
	color: #333;
}

#richieste p select:focus {
	outline: 2px solid #ccc;
}

#richieste input[type="button"] {
	align-self: center;
}
 
.bottone {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	background-color: #45a049;
}

.bottone:hover {
    background-color: #002ead;
    transition: 0.7s;
  } 

#traduzione {
	display: none;
	margin-top: 20px;
}