:root{
	--fys23-bg-image:none;
	--fys23-text:#111111;
	--fys23-muted:#5a5a5a;
	--fys23-card-bg:rgba(255,255,255,0.74);
	--fys23-card-border:rgba(255,255,255,0.30);
	--fys23-card-shadow:0 18px 60px rgba(0,0,0,0.10);
	--fys23-input-bg:rgba(255,255,255,0.88);
	--fys23-input-border:rgba(0,0,0,0.10);
	--fys23-button-bg:rgba(255,255,255,0.86);
	--fys23-button-text:#7a1c1c;
	--fys23-button-border:#7a1c1c;
	--fys23-primary:#7a1c1c;
	--fys23-footer-bg:#ffffff;
	--fys23-footer-text:#000000;
	--fys23-overlay-top:rgba(255,255,255,0.4);
	--fys23-overlay-bottom:rgba(255,255,255,0.4);
}

.fys23-theme-dark{
	--fys23-text:#ffffff;
	--fys23-muted:rgba(255,255,255,0.80);
	--fys23-card-bg:rgba(18,18,18,0.50);
	--fys23-card-border:rgba(255,255,255,0.12);
	--fys23-card-shadow:0 18px 60px rgba(0,0,0,0.28);
	--fys23-input-bg:rgba(255,255,255,0.10);
	--fys23-input-border:rgba(255,255,255,0.16);
	--fys23-button-bg:rgba(255,255,255,0.10);
	--fys23-button-text:#ffffff;
	--fys23-button-border:rgba(255,255,255,0.30);
	--fys23-primary:#ffffff;
	--fys23-overlay-top:rgba(0,0,0,0.4);
	--fys23-overlay-bottom:rgba(0,0,0,0.4);
}

html,
body{
	margin:0;
	padding:0;
	min-height:100%;
}

.fys23-body{
	margin:0;
	min-height:100vh;
	display:flex;
	flex-direction:column;
	font-family:'Roboto', sans-serif;
	color:var(--fys23-text);
	background-color:#f4f1ec;
	background-image:var(--fys23-bg-image);
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	position:relative;
}

.fys23-body::before{
	content:"";
	position:fixed;
	inset:0;
	background:linear-gradient(to bottom, var(--fys23-overlay-top), var(--fys23-overlay-bottom));
	pointer-events:none;
	z-index:0;
}

.fys23-site-header,
.fys23-main,
.fys23-footer,
.fys23-modal{
	position:relative;
	z-index:1;
}

.fys23-site-header{
	width:100%;
	display:flex;
	justify-content:center;
	padding:34px 20px 8px;
	box-sizing:border-box;
}

.fys23-site-header-inner{
	width:100%;
	max-width:1200px;
	text-align:center;
}

.fys23-logo{
	text-align:center;
	margin:0;
}

.fys23-logo img{
	max-width:min(340px, 72vw);
	max-height:120px;
	width:auto;
	height:auto;
	display:block;
	margin:0 auto;
	filter:drop-shadow(0 4px 18px rgba(0,0,0,0.10));
}

.fys23-main{
	flex:1;
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px;
	box-sizing:border-box;
}

.fys23-main--panel{
	align-items:flex-start;
	padding-top:20px;
	padding-bottom:40px;
}

.fys23-main-inner{
	width:100%;
	max-width:900px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}

.fys23-search-card,
.fys23-panel-card,
.fys23-floor-card{
	width:100%;
	max-width:760px;
	background:var(--fys23-card-bg);
	backdrop-filter:blur(14px);
	-webkit-backdrop-filter:blur(14px);
	border:1px solid var(--fys23-card-border);
	box-shadow:var(--fys23-card-shadow);
	border-radius:20px;
	padding:28px 24px;
	box-sizing:border-box;
}

.fys23-panel-card{
	max-width:920px;
}

.fys23-title{
	font-family:'Instrument Serif', serif;
	font-size:clamp(38px, 6vw, 64px);
	line-height:1.05;
	font-weight:400;
	font-style:italic;
	letter-spacing:0.2px;
	text-shadow:0 2px 10px rgba(0,0,0,0.06);
	text-align:center;
	margin:0 0 22px;
	color:var(--fys23-text);
}

.fys23-lang{
	display:flex;
	gap:10px;
	justify-content:center;
	align-items:center;
	margin-bottom:16px;
	color:var(--fys23-text);
	font-size:14px;
}

.fys23-lang select{
	border-radius:999px;
	padding:8px 14px;
	border:1px solid var(--fys23-input-border);
	background:var(--fys23-input-bg);
	color:var(--fys23-text);
}

.fys23-search{
	width:100%;
}

#fys23-search-input{
	width:100%;
	padding:16px 18px;
	font-size:18px;
	border:1px solid var(--fys23-input-border);
	border-radius:14px;
	text-align:center;
	background:var(--fys23-input-bg);
	color:var(--fys23-text);
	box-sizing:border-box;
	box-shadow:inset 0 1px 2px rgba(0,0,0,0.03);
	transition:border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	font-family:'Roboto', sans-serif;
}

#fys23-search-input::placeholder{
	color:var(--fys23-muted);
}

#fys23-search-input:focus{
	outline:none;
	border-color:rgba(122,28,28,0.45);
	box-shadow:0 0 0 4px rgba(122,28,28,0.10);
	transform:translateY(-1px);
}

.fys23-theme-dark #fys23-search-input:focus{
	border-color:rgba(255,255,255,0.35);
	box-shadow:0 0 0 4px rgba(255,255,255,0.10);
}

.fys23-hint{
	text-align:center;
	margin:12px 0 14px;
	font-size:13px;
	letter-spacing:0.2px;
	color:var(--fys23-muted);
	opacity:0.85;
}

.fys23-results{
	display:flex;
	flex-direction:column;
	gap:10px;
	margin-top:14px;
}

.fys23-result{
	width:100%;
	padding:16px 12px;
	border-radius:16px;
	border:1px solid rgba(0,0,0,0.06);
	background:rgba(255,255,255,0.84);
	box-shadow:0 6px 20px rgba(0,0,0,0.04);
	font-size:20px;
	cursor:pointer;
	text-align:center;
	color:var(--fys23-text);
	font-family:'Instrument Serif', serif;
	letter-spacing:0.5px;
	transition:transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	animation:fys23FadeUp 0.28s ease both;
}

.fys23-theme-dark .fys23-result{
	background:rgba(255,255,255,0.08);
	border-color:rgba(255,255,255,0.10);
}

.fys23-result:hover{
	transform:translateY(-2px);
	box-shadow:0 10px 28px rgba(0,0,0,0.10);
}

.fys23-empty{
	padding:14px;
	text-align:center;
	color:var(--fys23-muted);
	border:1px dashed rgba(255,255,255,0.35);
	border-radius:10px;
}

.fys23-buttons{
	display:flex;
	gap:10px;
	justify-content:center;
	margin-top:20px;
	flex-wrap:wrap;
}

.fys23-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:12px 18px;
	min-height:46px;
	border-radius:999px;
	border:1px solid var(--fys23-button-border);
	background:var(--fys23-button-bg);
	color:var(--fys23-button-text);
	cursor:pointer;
	font-family:'Roboto', sans-serif;
	font-weight:500;
	box-shadow:0 6px 18px rgba(0,0,0,0.05);
	transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fys23-btn:hover{
	transform:translateY(-1px);
	box-shadow:0 10px 26px rgba(0,0,0,0.10);
}

.fys23-btn[disabled]{
	opacity:.5;
	cursor:not-allowed;
}

.fys23-btn-primary{
	background:var(--fys23-primary);
	color:#ffffff;
	border-color:var(--fys23-primary);
	box-shadow:0 10px 28px rgba(122,28,28,0.18);
}

.fys23-theme-dark .fys23-btn-primary{
	color:#111111;
}

.fys23-btn::before{
	content:" ";
	width:16px;
	height:16px;
	display:inline-block;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	flex-shrink:0;
}

.fys23-buttons .fys23-btn:nth-child(1)::before{
	background-image:url("../img/mesas.svg");
}

.fys23-buttons .fys23-btn:nth-child(1){
	background-color:#f4f4f4;
}

.fys23-buttons .fys23-btn:nth-child(1):hover{
	background-color:#eaeaea;
}

.fys23-buttons .fys23-btn:nth-child(2)::before{
	background-image:url("../img/menu.png");
}

.fys23-checkin{
	margin-top:20px;
	text-align:center;
}

.fys23-checkin-msg{
	margin-top:10px;
	font-weight:700;
	color:var(--fys23-text);
	font-family:'Instrument Serif', serif;
}

.fys23-modal{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,0.72);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:16px;
	z-index:9999;
}

.fys23-modal[hidden]{
	display:none !important;
}

.fys23-modal-inner{
	background:#fff;
	border-radius:18px;
	max-width:980px;
	width:100%;
	max-height:90vh;
	overflow:auto;
	padding:16px;
	box-shadow:0 24px 70px rgba(0,0,0,0.28);
	animation:fys23ModalIn 0.22s ease;
}

.fys23-modal-close{
	float:right;
	border:1px solid #aaa;
	background:#fff;
	border-radius:10px;
	padding:10px 12px;
	cursor:pointer;
	color:#111;
}

.fys23-modal-content{
	padding:10px 0;
	clear:both;
}

.fys23-img{
	max-width:100%;
	height:auto;
	display:block;
	margin:0 auto;
}

.fys23-iframe{
	width:100%;
	height:80vh;
	border:0;
}

.fys23-room-full{
	margin:10px 0 16px;
	padding:14px;
	border-radius:12px;
	background:rgba(116, 195, 101, 0.18);
	border:1px solid rgba(116, 195, 101, 0.35);
	text-align:center;
	font-weight:800;
	color:var(--fys23-text);
}

.fys23-host-table{
	margin-top:18px;
	border:1px solid rgba(255,255,255,0.20);
	border-radius:16px;
	padding:16px;
	background:rgba(255,255,255,0.14);
}

.fys23-host-table h2{
	margin:0 0 12px;
	font-family:'Instrument Serif', serif;
	font-size:32px;
	color:var(--fys23-text);
}

.fys23-host-list{
	list-style:none;
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
	gap:8px;
}

.fys23-host-list li{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 12px;
	border-radius:12px;
	background:rgba(255,255,255,0.78);
	border:1px solid rgba(0,0,0,0.06);
	color:#111;
}

.fys23-theme-dark .fys23-host-list li{
	background:rgba(255,255,255,0.08);
	border-color:rgba(255,255,255,0.10);
	color:#fff;
}

.fys23-host-list li.is-registered{
	opacity:.78;
}

.fys23-floor-card{
	padding:20px 18px;
	text-align:center;
}

.fys23-floor-line{
	font-size:22px;
	margin:10px 0;
	color:var(--fys23-text);
}

.fys23-progress{
	height:18px;
	border-radius:999px;
	background:rgba(255,255,255,0.26);
	overflow:hidden;
	backdrop-filter:blur(6px);
	-webkit-backdrop-filter:blur(6px);
	border:1px solid rgba(255,255,255,0.20);
}

.fys23-progress-bar{
	height:18px;
	background:var(--fys23-primary);
	transition:width 0.35s ease;
}

.fys23-theme-dark .fys23-progress-bar{
	background:#ffffff;
}

.fys23-footer{
	width:100%;
	background:var(--fys23-footer-bg);
	color:var(--fys23-footer-text);
	padding:18px 20px;
	box-sizing:border-box;
	border-top:1px solid rgba(0,0,0,0.06);
	margin-top:auto;
}

.fys23-footer-inner{
	max-width:1200px;
	margin:0 auto;
	text-align:center;
	font-family:'Roboto', sans-serif;
	font-size:12px;
	letter-spacing:0.2px;
}

.fys23-footer a{
	color:#000000;
	text-decoration:none;
	font-weight:500;
}

.fys23-footer a:hover{
	text-decoration:underline;
}

@keyframes fys23FadeUp{
	from{
		opacity:0;
		transform:translateY(8px);
	}
	to{
		opacity:1;
		transform:translateY(0);
	}
}

@keyframes fys23ModalIn{
	from{
		opacity:0;
		transform:translateY(12px) scale(0.98);
	}
	to{
		opacity:1;
		transform:translateY(0) scale(1);
	}
}

@media (max-width: 767px){
	.fys23-site-header{
		padding-top:22px;
		padding-bottom:4px;
	}

	.fys23-title{
		font-size:clamp(36px, 11vw, 52px) !important;
	}

	.fys23-search-card,
	.fys23-panel-card,
	.fys23-floor-card{
		padding:20px 16px;
		border-radius:18px;
	}

	.fys23-btn{
		width:100%;
	}

	.fys23-result{
		font-size:18px;
	}

	.fys23-host-list li{
		flex-direction:column;
		align-items:flex-start;
	}
}


/* =================================
   LIQUID GLASS UI PACK v2.5
================================= */
:root{
	--fys23-glass-blur: 22px;
	--fys23-glass-radius: 28px;
	--fys23-glass-shadow: 0 20px 60px rgba( 0, 0, 0, 0.18 );
	--fys23-glass-border: rgba( 255, 255, 255, 0.22 );
	--fys23-glass-highlight: rgba( 255, 255, 255, 0.18 );
	--fys23-light-card: rgba( 255, 255, 255, 0.14 );
	--fys23-light-button: rgba( 255, 255, 255, 0.16 );
	--fys23-light-button-hover: rgba( 255, 255, 255, 0.24 );
	--fys23-light-input: rgba( 255, 255, 255, 0.12 );
	--fys23-light-input-border: rgba( 255, 255, 255, 0.20 );
	--fys23-dark-card: rgba( 20, 20, 20, 0.28 );
	--fys23-dark-button: rgba( 255, 255, 255, 0.08 );
	--fys23-dark-button-hover: rgba( 255, 255, 255, 0.14 );
	--fys23-dark-input: rgba( 255, 255, 255, 0.08 );
	--fys23-dark-input-border: rgba( 255, 255, 255, 0.16 );
}

.fys23-body::before{
	content: "";
	position: fixed;
	inset: 0;
	background: linear-gradient( to bottom, rgba( 0, 0, 0, 0.7 ), rgba( 0, 0, 0, 0.1 ) );
	pointer-events: none;
	z-index: 0;
}

.fys23-theme-dark::before{
	background: linear-gradient( to bottom, rgba( 255, 255, 255, 0.5 ), rgba( 255, 255, 255, 0.2 ) );
}

.fys23-site-header,
.fys23-main,
.fys23-footer,
.fys23-modal{
	position: relative;
	z-index: 1;
}

.fys23-search-card,
.fys23-panel-card,
.fys23-floor-card{
	position: relative;
	overflow: hidden;
	border-radius: var( --fys23-glass-radius );
	backdrop-filter: blur( var( --fys23-glass-blur ) ) saturate( 140% );
	-webkit-backdrop-filter: blur( var( --fys23-glass-blur ) ) saturate( 140% );
	box-shadow: var( --fys23-glass-shadow );
	border: 1px solid var( --fys23-glass-border );
}

.fys23-theme-light .fys23-search-card,
.fys23-theme-light .fys23-panel-card,
.fys23-theme-light .fys23-floor-card{
	background: linear-gradient( 135deg, rgba( 255, 255, 255, 0.22 ) 0%, rgba( 255, 255, 255, 0.10 ) 45%, rgba( 255, 255, 255, 0.16 ) 100% );
}

.fys23-theme-dark .fys23-search-card,
.fys23-theme-dark .fys23-panel-card,
.fys23-theme-dark .fys23-floor-card{
	background: linear-gradient( 135deg, rgba( 30, 30, 30, 0.34 ) 0%, rgba( 18, 18, 18, 0.20 ) 45%, rgba( 40, 40, 40, 0.28 ) 100% );
}

.fys23-search-card::before,
.fys23-panel-card::before,
.fys23-floor-card::before{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient( 180deg, rgba( 255, 255, 255, 0.22 ) 0%, rgba( 255, 255, 255, 0.05 ) 20%, rgba( 255, 255, 255, 0.00 ) 45% );
}

.fys23-search-card::after,
.fys23-panel-card::after,
.fys23-floor-card::after{
	content: "";
	position: absolute;
	top: 0;
	left: 8%;
	right: 8%;
	height: 1px;
	background: rgba( 255, 255, 255, 0.42 );
	opacity: 0.65;
	pointer-events: none;
}

#fys23-search-input{
	border-radius: 22px !important;
	padding: 18px 22px !important;
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	box-shadow: inset 0 1px 0 rgba( 255,255,255,0.16 ), 0 8px 20px rgba( 0,0,0,0.05 );
}

.fys23-theme-light #fys23-search-input{
	background: var( --fys23-light-input ) !important;
	border: 1px solid var( --fys23-light-input-border ) !important;
	color: #ffffff !important;
}

.fys23-theme-light #fys23-search-input::placeholder{
	color: rgba( 255,255,255,0.82 );
}

.fys23-theme-dark #fys23-search-input{
	background: var( --fys23-dark-input ) !important;
	border: 1px solid var( --fys23-dark-input-border ) !important;
	color: #ffffff !important;
}

.fys23-theme-dark #fys23-search-input::placeholder{
	color: rgba( 255,255,255,0.76 );
}

.fys23-theme-light .fys23-title,
.fys23-theme-light .fys23-hint,
.fys23-theme-light .fys23-empty,
.fys23-theme-light .fys23-floor-line,
.fys23-theme-light .fys23-checkin-msg,
.fys23-theme-light .fys23-lang label{
	color: #ffffff !important;
	text-shadow: 0 2px 12px rgba( 0,0,0,0.12 );
}

.fys23-theme-dark .fys23-title,
.fys23-theme-dark .fys23-hint,
.fys23-theme-dark .fys23-empty,
.fys23-theme-dark .fys23-floor-line,
.fys23-theme-dark .fys23-checkin-msg,
.fys23-theme-dark .fys23-lang label{
	color: #ffffff !important;
	text-shadow: 0 2px 12px rgba( 0,0,0,0.20 );
}

.fys23-result{
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	border-radius: 22px !important;
}

.fys23-theme-light .fys23-result{
	background: rgba( 255,255,255,0.14 ) !important;
	border: 1px solid rgba( 255,255,255,0.20 ) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 24px rgba( 0,0,0,0.08 );
}

.fys23-theme-dark .fys23-result{
	background: rgba( 255,255,255,0.08 ) !important;
	border: 1px solid rgba( 255,255,255,0.12 ) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 24px rgba( 0,0,0,0.12 );
}

.fys23-btn{
	border-radius: 999px !important;
	padding: 14px 22px !important;
	min-height: 56px;
	backdrop-filter: blur( 14px ) saturate( 130% );
	-webkit-backdrop-filter: blur( 14px ) saturate( 130% );
	box-shadow: inset 0 1px 0 rgba( 255,255,255,0.14 ), 0 10px 24px rgba( 0,0,0,0.08 );
}

.fys23-theme-light .fys23-btn{
	background: var( --fys23-light-button ) !important;
	border: 1px solid rgba( 255,255,255,0.22 ) !important;
	color: #ffffff !important;
}

.fys23-theme-light .fys23-btn:hover{
	background: var( --fys23-light-button-hover ) !important;
}

.fys23-theme-dark .fys23-btn{
	background: var( --fys23-dark-button ) !important;
	border: 1px solid rgba( 255,255,255,0.16 ) !important;
	color: #ffffff !important;
}

.fys23-theme-dark .fys23-btn:hover{
	background: var( --fys23-dark-button-hover ) !important;
}

.fys23-theme-light .fys23-btn-primary{
	background: rgba( 255,255,255,0.28 ) !important;
	color: #ffffff !important;
	border: 1px solid rgba( 255,255,255,0.30 ) !important;
}

.fys23-theme-dark .fys23-btn-primary{
	background: rgba( 255,255,255,0.16 ) !important;
	color: #ffffff !important;
	border: 1px solid rgba( 255,255,255,0.20 ) !important;
}

.fys23-theme-light .fys23-host-list li{
	background: rgba( 255,255,255,0.12 ) !important;
	border: 1px solid rgba( 255,255,255,0.18 ) !important;
	color: #ffffff !important;
}

.fys23-theme-dark .fys23-host-list li{
	background: rgba( 255,255,255,0.06 ) !important;
	border: 1px solid rgba( 255,255,255,0.10 ) !important;
	color: #ffffff !important;
}

.fys23-theme-light .fys23-progress{
	background: rgba( 255,255,255,0.14 ) !important;
	border: 1px solid rgba( 255,255,255,0.18 ) !important;
}

.fys23-theme-dark .fys23-progress{
	background: rgba( 255,255,255,0.08 ) !important;
	border: 1px solid rgba( 255,255,255,0.12 ) !important;
}

.fys23-progress-bar{
	background: rgba( 255,255,255,0.82 ) !important;
}

/* =================================
   Check-in button states + tooltip
================================= */

#fys23-checkin-btn{
	position:relative;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
}

/* Dot */
#fys23-checkin-btn::before{
	content:"•";
	font-size:24px;
	line-height:1;
	font-weight:700;
	display:inline-block;
	transform:translateY(-1px);
}

/* Pending = green */
#fys23-checkin-btn.is-pending{
	border-color:#8BDFB7 !important;
	box-shadow:0 0 0 1px rgba(139,223,183,0.18), 0 10px 26px rgba(139,223,183,0.10) !important;
}

#fys23-checkin-btn.is-pending::before{
	color:#8BDFB7;
}

/* Registered = red */
#fys23-checkin-btn.is-registered{
	border-color:#df5e5e !important;
	box-shadow:0 0 0 1px rgba(223,94,94,0.18), 0 10px 26px rgba(223,94,94,0.10) !important;
	opacity:0.92;
}

#fys23-checkin-btn.is-registered::before{
	color:#df5e5e;
}

/* disabled appearance */
#fys23-checkin-btn.is-registered[disabled]{
	cursor:not-allowed;
}

/* Tooltip bubble */
#fys23-checkin-btn[data-tooltip]::after{
	content:attr(data-tooltip);
	position:absolute;
	left:50%;
	bottom:calc(100% + 12px);
	transform:translateX(-50%) translateY(6px);
	min-width:220px;
	max-width:280px;
	padding:10px 12px;
	border-radius:14px;
	font-size:13px;
	line-height:1.35;
	text-align:center;
	white-space:normal;
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	transition:all 0.18s ease;
	z-index:20;

	background:rgba(255,255,255,0.94);
	color:#111111;
	box-shadow:0 14px 34px rgba(0,0,0,0.14);
	border:1px solid rgba(0,0,0,0.08);
}

/* small arrow */
#fys23-checkin-btn[data-tooltip] span{
	position:relative;
}

#fys23-checkin-btn[data-tooltip]:hover::after,
#fys23-checkin-btn[data-tooltip]:focus-visible::after{
	opacity:1;
	visibility:visible;
	transform:translateX(-50%) translateY(0);
}

/* dark mode tooltip */
.fys23-theme-dark #fys23-checkin-btn[data-tooltip]::after{
	background:rgba(24,24,24,0.96);
	color:#ffffff;
	border:1px solid rgba(255,255,255,0.10);
	box-shadow:0 14px 34px rgba(0,0,0,0.28);
}

/* mobile */
@media (max-width: 767px){
	#fys23-checkin-btn[data-tooltip]::after{
		min-width:200px;
		max-width:240px;
		font-size:12px;
	}
}
/* estilos pagina publica HOST listado de mesas */
.fys23-host-guest{
	display:flex;
	flex-direction:column;
}

.fys23-host-allergies{
	font-size:12px;
	opacity:0.7;
	margin-top:4px;
}

.fys23-host-guest{
	display:flex;
	flex-direction:column;
}

.fys23-host-allergies{
	font-size:13px;
	opacity:0.82;
	margin-top:4px;
	color:#ffffff;
}
.fys23-host-table h2{
	color:#ffffff;
}
.fys23-host-list .is-registered .fys23-host-status{
    color:#df5e5e;
}
.fys23-host-list .is-pending .fys23-host-status{
    color:#d7f069;
}
}
/* estilos pagina publica jefe de sala */

.fys23-floor-line{font-size:24px;}
.fys23-floor-allergy-name{margin-top:15px;}
.fys23-floor-allergies{
	margin-top:22px;
	text-align:left;
	color:#ffffff;
}

.fys23-floor-allergies-title{
    color:#ffffff;
	margin:0 0 12px;
	font-size:18px;
	font-family:'Roboto', sans-serif;
	font-weight:600;
}

.fys23-floor-allergies-list{
    color:#ffffff;
	list-style:none;
	padding:0;
	margin:0;
	display:flex;
	flex-direction:column;
	gap:8px;
}

.fys23-floor-allergies-list li{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 12px;
	border-radius:12px;
	background:rgba(255,255,255,0.10);
	border:1px solid rgba(255,255,255,0.14);
}

.fys23-floor-allergy-name{
	font-size:12px;
}

.fys23-floor-allergy-count{
	font-size:12px;
	font-weight:700;
}

/* Resultado seleccionado */
.fys23-result-selected{
	border:1px solid #8BDFB7 !important;
	box-shadow:
		0 0 0 2px rgba(139,223,183,0.12),
		0 18px 40px rgba(139,223,183,0.12) !important;
	transform:scale(1.01);
}

.fys23-result-selected:hover{
	transform:scale(1.01);
}

/* Resultado ya registrado */
.fys23-result-registered{
	border-color:#df5e5e !important;
	color:#df5e5e !important;
}

.fys23-result-selected.fys23-result-registered{
	border:1px solid #df5e5e !important;
	box-shadow:
		0 0 0 2px rgba(223,94,94,0.12),
		0 18px 40px rgba(223,94,94,0.10) !important;
		color:#973434 !important;
}
.fys23-results .fys23-result-registered{color:#973434 !important;}
.fys23-results{
	min-height:0;
}
}