body {
	margin-top: 3%;
	margin-bottom: 15%;
}

.hidden {
	display: none;
}

.hero-emoji {
	font-size: 3rem;
}

.login-image {
	max-height: 300px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.hero-image {
	max-height: 400px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.help-image {
	max-width: 100%;
	max-height: 30%;
}

.auth-container {
	width: 80%;
	max-width: 400px;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
}

.password-tooltip {
	font-size: 0.8rem;
	font-style: italic;
	color: #666;
}

.page-h1 {
	text-align: center;
}

.filter-title {
	font-size: 0.9rem;
	font-weight: 600;
}

.user-greeting {
	font-size: 1rem;
	font-weight: 500;
}

/***** BUTTON STYLES *****/
.action-btn,
.reset-btn,
.cancel-btn {
	width: 100%;
}

.extra-small-button {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	font-size: 0.75rem;
}

/***** DASHBOARD STYLES *****/

.picture-profile-dashboard {
	max-height: 40px;
	max-width: 40px;
	object-fit: contain;
	display: inline-block;
	margin: 0 auto;
	vertical-align: middle;
}

.dashboard-card-icon {
	height: 55px;
	width: 55px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.dashboard-card-unit {
	font-size: 1.5rem;
	color: #303030;
}

.dashboard-card-subtitle {
	font-size: 0.9rem;
	font-weight: 600;
	color: #b9953d;
}
/***** DASHBOARD ANIMATIONS *****/

/* Estilo base mínimo */
.dashboard-value {
	display: inline-block; /* Necesario para que la animación de escala funcione */
}

/* Animación de "pop" */
@keyframes pop {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.dashboard-value.pop {
	animation: pop 0.3s ease forwards;
}

/***** FORM STYLES *****/
.form-control:focus,
.form-select:focus {
	border-color: #b9953d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #b9963d80;
}

.form-check-input:checked {
	background-color: #b9953d;
	border-color: #b9953d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #b9963d80;
}

.form-subtitle {
	font-weight: 600;
	font-size: 1.3rem;
}

.form-switch {
	font-size: 1.5rem;
}

.form-label {
	font-weight: 500;
	font-size: 1rem;
}
.form-label-unit {
	font-size: 0.8rem;
	color: #666;
}

/***** FORM AUTOCOMPLETE *****/

.suggestions-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggestions-list li {
	padding: 8px 12px;
	cursor: pointer;
}

.suggestions-list li:hover {
	background: #e9ecef;
}

/***** CODE SLIDER *****/

/* Note: Only in the CURSOR editor's preview the sliders still display as blue from bootstrap. */

.slider {
	position: relative;
	display: inline-block;
	width: 100%; /* Asegura que el slider ocupe todo el ancho disponible */
}

.form-range::-webkit-slider-thumb,
.form-range::-moz-range-thumb {
	background-color: black;
	width: 18px;
	height: 18px;
}

.form-range:focus::-webkit-slider-thumb,
.form-range:active::-webkit-slider-thumb,
.form-range:focus::-moz-range-thumb,
.form-range:active::-moz-range-thumb {
	background-color: black;
	box-shadow: 0 0 0 3px #b9963dd0;
}

.slider .step-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.8em;
	color: #666;
}

.slider .tooltip {
	position: absolute;
	background: #555;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 12px;
	pointer-events: none;
	z-index: 10;
	display: none;
	white-space: nowrap;
	transition: opacity 0.3s;
	top: -40px; /* Ajuste para aparecer arriba */
	transform: translateX(-50%); /* Centrar horizontalmente */
}

.slider .tooltip[style*="display: block"] {
	opacity: 1;
}

.slider .tooltip[style*="display: none"] {
	opacity: 0;
}

/*PROFILE*/

/* Estilo base para el contenedor de la imagen de perfil */
.profile-pic-container {
	position: relative;
	width: 150px; /* Tamaño por defecto para el perfil */
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #333; /* Ajusta el color según tu tema oscuro */
	display: inline-block;
	vertical-align: middle;
}

.profile-pic-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Estilos específicos para user-profile.html */
.profile-pic-container.profile-pic-editable {
	margin: 0 auto 20px;
	cursor: pointer;
}

.profile-pic-container.profile-pic-editable:hover {
	opacity: 0.9;
}

.profile-pic-upload {
	display: none;
}

.profile-pic-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #444; /* Fondo oscuro */
	color: #fff;
	font-size: 24px;
}

/* Estilos específicos para dashboard.html */
.profile-pic-container.profile-pic-dashboard {
	width: 50px; /* Tamaño más pequeño para el dashboard */
	height: 50px;
}

.user-greeting {
	margin-left: 10px;
	font-size: 1rem; /* Ya lo tenías definido, pero lo ajustamos para consistencia */
	font-weight: 500;
}
