/* Overlay oscuro */
#tyc-reset-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: auto;
}

/* Contenido */
#tyc-reset-modal .tyc-reset-content {
	margin: 1rem 0;
	line-height: 1.4;
	overflow-y: auto;
	flex-grow: 1;
}

/* Contenedor del modal */
#tyc-reset-modal {
	background: #ffffff;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	max-height: 50vh;
	display: flex;
	flex-direction: column;
}

/* Título principal */
#tyc-reset-modal h2 {
	margin-top: 0;
	font-size: 18px;
	color: #1d2327;
	flex-shrink: 0;
}

/* Texto central */
#tyc-reset-modal .tyc-reset-intro-text {
	font-size: 15px;
	color: #1d2327;
}

/* Texto con enlace */
#tyc-reset-modal .tyc-reset-link {
	font-size: 15px;
	color: #2271b1;
}

/* Botones */
#tyc-reset-modal .tyc-reset-buttons {
	margin-top: 1.5rem;
	display: flex;
	justify-content: space-around;
}

/* Estilos comunes para ambos botones (sin tipografía) */
#tyc-reset-modal #tyc-reset-accept,
#tyc-reset-modal #tyc-reset-cancel {
	padding: 0.6rem 1.2rem;
	font-size: 15px;
	letter-spacing: 1.5px;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	line-height: normal;
}

/* Botón Aceptar - Colores */
#tyc-reset-modal #tyc-reset-accept {
	background-color: #0073aa;
	color: #ffffff;
}

/* Botón Cancelar - Colores */
#tyc-reset-modal #tyc-reset-cancel {
	background-color: #aaaaaa;
	color: #ffffff;
}

/* Para pantallas pequeñas */
@media (max-width: 480px) {
#tyc-reset-modal {
	padding: 1rem;
}
#tyc-reset-modal .tyc-reset-buttons {
	flex-direction: column;
}
#tyc-reset-modal .tyc-reset-buttons .button {
	width: 100%;
	margin-bottom: 0.5rem;
}
}