.session-container.create {
	background: linear-gradient(135deg, #2c2c39, #18181e);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
	max-width: 31.25rem;
	width: 100%;
	text-align: center;
	transition: background 0.5s ease;
	margin: auto;
}

/* Boutons des modules session-container*/
.session-container.create .module {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 2rem;
	margin: 2rem;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	text-align: left;
	min-height: auto !important;
}

.session-container.create .module:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.03);
}

.session-container.create .module input {
	margin-right: 0.625rem;
}

/* Bouton valider */
.session-container.create .validate-btn {
	width: 100%;
	padding: 0.75rem;
	margin-top: 0.9375rem;
	border-radius: 3.125rem;
	font-size: 1rem;
	color: #fff;
	display: none;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

.session-container.create .validate-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

/*  Lien généré */
.session-container.create .link-container {
	margin-top: 1.25rem;
	font-size: 1rem;
	display: none; 
}

.session-container.create .link-container a:hover {
	text-decoration: underline;
}