/*Reset CSS ---- Inicio */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/* font: inherit; */
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Reset CSS ---- Fin */

/* Google Material Icons */
.material-symbols-outlined {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}


/* Estilos Personalizados -------------------------- Inicio */
body {
	height: 95vh;
	background-color: #23262B;
}

main {
	height: 95vh;
	width: 384px;
	border-radius: 10px;
	box-shadow: 0px 0px 5px darkorange;
}

header {
	background-color: #FF914D;
}

#history-chat-div {
	height: 70%;
	border: 1px solid lightgray;
}

#chat-container,
#chatMainButtons,
#chatContactNoTags {
	height: auto;
}

#input-container {
	height: 50px;
}

#chat-form {
	padding: 5px 10px;
	border: 1px solid rgb(166, 166, 166);
	border-radius: 20px;
}

#chat-form input {
	width: 100%;
}

#verMensajesBtn button {
	border: 1px solid rgb(166, 166, 166);
	border-radius: 20px;
}

/* #verMensajesBtn button:hover,
#verMensajesBtn button:active,
#verMensajesBtn button:focus {
	border-color: #FF914D;
} */

.send-icon,
.mic-icon,
#mouse-delete-audio {
	color: grey;
}

#mouse-delete-audio:hover {
	color: rgb(175, 1, 1);
}

#mouse-delete-audio:hover {
	cursor: pointer;
}

.highlight-selector {
	border: 2px solid darkblue !important;
}

button:not(#chat-input-btn):hover,
button:not(#chat-input-btn).active,
button:not(#chat-input-btn).focus {
	color: white;
	background-color: #FF914D;
}

/* Boton "X" para cerrar popup */
#closeIcon:hover {
	background-color: transparent !important;
	color: #FF914D !important;
}

button#chat-input-btn svg {
	height: 24px;
	width: 24px;
}

button#chat-input-btn span,
button#chat-input-btn svg {
	transition: transform 0.2s ease-in-out;
}

button#chat-input-btn span:hover,
button#chat-input-btn svg:hover {
	color: #FF914D;
	transform: scale(1.1);
}

.orange {
	color: #FF914D;
}

.added-note {
	background-color: rgb(233, 232, 232);
	color: black;
	padding: 15px;
	border-radius: 10px;
	width: fit-content;
	margin: auto;
	max-width: 80%;
}

.check-contact-btn-container {
	margin-top: 25px;
}

.notes-container {
	max-height: 240px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.note {
	background-color: rgb(221, 221, 221);
	padding: 10px;
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
}

.notes-icons {
	min-width: 25%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 15px;
}

.notes-icons span {
	cursor: pointer;
}

.note-date {
	font-size: 11;
}

.note-body {
	max-width: 74%;
}

.note-content {
	font-weight: 600;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.note-date {
	font-size: 13px;
}

/* Modal de inicio Styles -- Inicio */
#loginModal {
	background-color: white;
	padding: 15px;
	border-radius: 10px;
}

#loginModal .img-container {
	margin: auto;
}

#loginModal .img-container img {
	margin: auto;
}

#loginModal h1 {
	font-size: 22px;
	text-align: center;
	margin: 10px 0;
}

#loginForm {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 20px;
}

#loginForm input {
	background-color: gainsboro;
	border-radius: 5px;
	padding: 5px;
}

#loginForm button {
	padding: 7px;
	border-radius: 5px;
	margin-top: 10px;
	background-color: #FF914D;
}

/* Modal de inicio Styles -- Fin */


/* Dropdown Button Styles -- Inicio */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	bottom: 100%;
	left: 0;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 5px 0px 16px rgba(0, 0, 0, 0.2);
	padding: 12px 16px;
	z-index: 1;
}

.dropdown-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dropdown-content li {
	margin-bottom: 8px;
}

.dropdown-content a:hover {
	color: #FF914D;
}

.show {
	display: block;
}

/* Dropdown Button Styles -- Fin */

#footer {
	width: 384px;
	text-align: center;
	position: fixed;
	bottom: 75px;
}

.gotiger-link {
	color: #FF914D;
}

.input-ai {
	color: rgb(17 24 39);
	background-color: rgb(251, 222, 195);
}

.input-user {
	color: rgb(17 24 39);
	background-color: rgb(229 231 235);
}

/* Deshabilita boton SEND y CLEAR*/
.disabled-button {
	cursor: not-allowed;
	/* Cursor indicando que no se puede hacer clic */
	opacity: 0.35;
	/* Algo de opacidad para reforzar el estado deshabilitado */
}

/* Toast notifications - Inicio */
.toast {
	opacity: 0;
}

.toast-enter {
	transition: opacity 0.4s ease-out;
	opacity: .8;
}

.toast-exit {
	transition: opacity 0.4s ease-in;
	opacity: 0;
}

/* Toast notifications - Fin */

/* Tooltips para Notas - Inicio */
.tooltip {
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	z-index: 50;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip-left {
	left: auto;
	right: 100%;
}

.tooltip-visible {
	visibility: visible;
	opacity: 1;
}

/* Tooltips para Notas - Fin */

#slide-to-cancel {
	color: grey
}


/* Popup Range Score - Inicio */
#scoreRange {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    outline: none;
    /* opacity: 0.7; */
    /* transition: opacity 0.2s; */
    border-radius: 5px;
}
/* Estilos del thumb para Chrome/Safari */
#scoreRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/* Estilos del thumb para Firefox */
#scoreRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/* Popup Range Score - Fin */

/* Estilos Personalizados -------------------------- Fin */



/* Media Queries */
/*Smartphones*/
@media (min-width: 320px) {}

@media (max-width: 633px) {
    #mainApp {
		width: 100%;
		padding: 0; /* Agregado para asegurarnos que no haya padding en los laterales */
		margin: 0;  /* Agregado para asegurarnos que no haya margin en los laterales */
	  }
	  body{
		margin: 0 !important;
		padding: 0 !important; 
	  }
	  main{
		margin: 0 !important;
		padding: 0 !important; 
		width: 100%;
		border-radius: 0;
	  }
}

/*Tablets*/
@media (min-width: 634px) {}


/*Laptop*/
@media (min-width: 1024px) {
	body {
		height: 100vh;
	}

	main {
		border: 1px solid rgb(166, 166, 166);
	}

	header {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}
}


/*Desktop*/
@media (min-width: 1440px) {}


/*Large Desktop*/
@media (min-width: 2560px) {}