.container-login-doc-app {
	display: flex;
}

.form-login-doc-container {
	flex: 1 1 auto;
	width: auto;
	max-width: 360px;
	height: auto;
	min-height: 100dvh;
}

.login-doc-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 100%;
	min-height: 470px;
	margin-bottom: 30px;
	padding: 20px;
	padding-left: 40px;
	padding-right: 40px;
	background-color: var(--white);

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	overflow-x: auto;
}

.login-doc-form .logo-container-form {
	margin-bottom: 10px;
}

.login-doc-form .logo-container-form img {
	width: auto;
	max-width: 200px;
	height: auto;
}

.login-doc-form-tittle {
	margin-bottom: 0.1rem;
	text-align: center
}

.login-doc-form-tittle>h1 {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600
}

.login-doc-form-container-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: auto;
}

.login-doc-form .btn-gap {
	width: 100%;
}


.container-highlight {
	flex: 1;
	background-color: #1E82E8 !important;
}

/*.__greetings {
	display: block;
	font-size: 13;
	font-family: 'Inter', sans-serif;
}

.__greetings .__daytime_text {
	display: block;
	color: #757A83;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
}

.__greetings .__username_greetings {
	display: block;
	color: #000;
	font-size: 21px;
}

.__user_text_schedule {
	display: block;
	padding: 10px 0px;
	color: #757A83;
}*/


/* Welcome Banner */
.welcome-banner {
	background: linear-gradient(to right, #3474CB, #4994F1);
	border-radius: 15px;
	padding: 25px;
	color: white;
	display: flex;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.welcome-content {
	flex: 1;
}

.welcome-title {
	font-size: 14px;
	margin-bottom: 5px;
}

.welcome-name {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.schedule-label {
	font-size: 14px;
	margin-bottom: 15px;
}

.schedule-cards {
	display: flex;
	gap: 15px;
}

.schedule-card {
	width: auto;
	min-width: 80px;
	max-width: 90px;
	padding: 12px;
	border-radius: 10px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.2);
}

.schedule-card.patients {
	background-color: #27a3f8;
}

.schedule-card.surgeries {
	background-color: #4caf50;
}

.schedule-card.discharges {
	background-color: #ff9800;
}

.schedule-card h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

.schedule-card p {
	font-size: 12px;
	line-height: 100%;
}

.link-schedule {
	color: #FFF;
	text-decoration: none;
}

.link-schedule:hover {
	opacity: 0.95;
}

.welcome-image {
	display: flex;
	align-items: center;
	margin-right: 0px;
}

.welcome-image img {
	width: 260px;
	height: auto;
	border-radius: 6px;
}


/* Calendar */
.calendar {
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.calendar-item {
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 12px;
	cursor: pointer;
}

.calendar-item.active {
	background-color: #3474CB;
	color: white;
}

.calendar-item:not(.active) {
	background-color: #f0f0f0;
	color: #666;
}

/* Tags and badges */
.tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 10px;
	font-weight: 500;
}

.tag-blue {
	background-color: #e0ebff;
	color: #2173e8;
}

._link {
	font-size: 13px;
	color: #ACD5F3;
	text-decoration: none;
}

._link:hover {
	text-decoration: underline;
}




.patient-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.patient-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.patient-item:last-child {
	border-bottom: none;
}

.patient-item-info {
	flex-grow: 1;
}

.patient-item-info strong {
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	color: #3E3F48;
	margin-bottom: 3px;
}

.patient-item-info span {
	font-size: 1em;
	color: #7f8aa5;
}

.empty-list-message {
	text-align: center;
	padding: 50px 20px;
	background-color: #e9f5ff;
	border: 1px dashed #a0d2ff;
	border-radius: 8px;
	color: #3474cb;
	margin-top: 30px;
}

.empty-list-message .material-icons {
	font-size: 80px;
	color: #3474cb;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.empty-list-message p {
	font-size: 1.6em;
	line-height: 1.6;
	margin: 0;
}

.empty-list-message p:last-child {
	font-size: 1.1em;
	color: #004085;
	margin-top: 10px;
}
