/*
Theme Name: Movement RX Patient Dashboard V2
Author: CH 02.2025 | Prosoft Phils
Author URL: http://prosoft-phils.com/
Description: Styles
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
 1.0 General Styles (35,49)
 2.0 Resets
 3.0 Links (203*, 213*)
 4.0 Lists
 5.0 Alignment
 6.0 Video Modal Full-Width
 7.0 Custom Class
 8.0 Font Class (331, 334, 338, 343*, 347*, 351*)
 9.0 Custom Theme Colors (357)
10.0 Custom Button Colors (364)
11.0 Forms
12.0 Alerts
13.0 Universal Class
14.0 List Style
15.0 Vertical Horizontal Center

--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 General Styles
--------------------------------------------------------------*/

html, body {
	font-family: 'Inter';
	background: linear-gradient(90.07deg, #2A4E79 0.06%, #4268B0 99.94%);
  height: 100%;
  margin: 0;
  /*overflow: hidden;*/ /* Prevent entire page scrolling */
  color: #4B5563;
  font-size:14px;
}
	

button,
input,
select,
textarea {
	/*background-color: #333; /* just to illustrate contrast */
	color: #4B5563;
	
	font-size: 14px;
/*	line-height: 18px;*/
/*	height: 40px;*/
}




h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 700;
	clear: both;
	line-height: 1.4;
	padding: 0 0 15px 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
}

p {
	margin: 0 0 1.5em;
	padding: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	font-size: 20px;
	line-height: 23px;
	font-style: italic;
	line-height: 1.7;
	margin: 15px;
	overflow: hidden;
	padding: 15px;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5em;
}

figcaption {
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	margin-bottom: 15px;
	margin-top: 5px;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "“" "”" "‘" "’";
}

blockquote:before,
blockquote:after {
	content: "";
}

:focus {
	outline: none;
}

/*--------------------------------------------------------------
2.0 Resets
--------------------------------------------------------------*/
.reset-padding {
	padding: 0 !important
}

.reset-margin {
	margin: 0 !important
}

.reset-color {
	color: #0D0D0D;
}


/*--------------------------------------------------------------
3.0 Links
--------------------------------------------------------------*/
a {
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
	text-decoration: none;
	color: #0a58ca;
}

/*--------------------------------------------------------------
4.0 Lists
--------------------------------------------------------------*/
ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
5.0 Alignment
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
6.0 Video Modal Full-Width
--------------------------------------------------------------*/
.modal-video {
	background: rgba(0,0,0,0.9);
}

.modal-video .modal-content {
	background: transparent;
}

.modal-video .modal-dialog {
	position: absolute;
	top: -10px;
	right: 10px;
	max-width: 100%;
	z-index: 3000 !important;
}

.modal-video-close {
	cursor: pointer;
	display: inline-block;
}

.video-modal-content {
    display: block;
    height: auto;
    overflow: hidden;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
	
	.video-modal-content iframe {
		width: 100% !important;
		height: 100% !important;
	}

/*--------------------------------------------------------------
7.0 Custom Class
--------------------------------------------------------------*/
.uppercase {
	text-transform: uppercase;
}

.center {
	margin: 0 auto;
}

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

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.border {
	border: 1px solid red;
}

.inline {
	display: inline-block !important
}

.w100 {
	width: 100%
}

/*--------------------------------------------------------------
8.0 Font Class
--------------------------------------------------------------*/
.bold,
strong,
b {
/*	font-family:'Montserrat B', arial, sans-serif !important;*/
	font-weight: 700;
}

.regular {
/*	font-family: 'Montserrat', arial, sans-serif;*/
font-weight: 100;
}

.semi-bold {
/*	font-family:'Montserrat SB', arial, sans-serif;*/
	font-weight: 600;
}

.medium {
/*	font-family: 'Montserrat M', arial, sans-serif;*/
}

.font-12 {
	font-size: 12px !important;
}

.font-13 {
	font-size: 13px !important;
}

.font-14 {
	font-size: 14px !important;
}

.fw-900 {
	font-weight: 900;
}

/*--------------------------------------------------------------
9.0 Custom Theme Colors
--------------------------------------------------------------*/
:root {
	--color-white: #fff;
	--color-black: #333;
	--color-sky-blue: #F5F9FF;
	--color-blue: #0EA5E9;
	--color-dblue: #295079;
	--color-green: #22C55E;
	--color-lgray: #F3F4F6;
	--color-gray: #64748B;
	--color-dgray: #6b7280;
	--color-ice-gray: #EFF3F8;
}

.color-white {
	color: #fff;
}

.color-black {
	color: #333;
}

.color-sky-blue {
	color: var(--color-sky-blue);
}

.color-blue {
	color: var(--color-blue);
}

.color-dblue {
	color: var(--color-dblue);
}

.color-green {
	color: var(--color-green);
}

.color-lgray {
	color: var(--color-lgray);
}

.color-gray {
	color: var(--color-gray);
}

.color-dgray {
	color: var(--color-dgray);
}

.bg-white {
	background-color: #fff;
}

.bg-black {
	background-color: #333;
}

.bg-sky-blue {
	background-color: var(--color-sky-blue);
}

.bg-blue {
	background-color: var(--color-blue);
}

.bg-dblue {
	background-color: var(--color-dblue);
}

.bg-green {
	background-color: var(--color-green);
}

.bg-lgray {
	background-color: var(--color-lgray);
}

.bg-gray {
	background-color: var(--color-gray);
}

.bg-dgray {
	background-color: var(--color-dgray);
}

.bg-ice-gray {
    background-color: var(--color-ice-gray);
}

/*--------------------------------------------------------------
10.0 Custom Button Colors
--------------------------------------------------------------*/

.btn-xs{
	padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 0.2rem;
	padding:0;
	outline: none;
  	box-shadow: none;
}

.btn-sm-circle {
  border-radius: 50px;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.btn-square {
	padding: 0.75rem 1.07rem;
  }
.btn-elongated {
	padding: 0.75rem 1.25rem;
	border-radius: 0.43rem;
  }

.btn-border-0{
	border: none;
	border-radius:6px;
}


.btn-custom-blue {
  color: #ffffff !important;
  background-color: var(--color-blue);
}

	.btn-custom-blue:hover {
		background-color: #0284c7;
	}

	.btn-custom-blue:focus,
	.btn-custom-blue:active,
	.btn-custom-blue.active {
	  color: #fff;
	  background-color:  #0369a1 !important;
	}

.btn-outline-blue {
  color: var(--color-blue);
  background-color: #fff;
  border: 1px solid var(--color-blue);
}

	.btn-outline-blue:hover,
	.btn-outline-blue:focus,
	.btn-outline-blue:active,
	.btn-outline-blue.active {
		color: #fff;
		background-color: var(--color-blue);
		border: 1px solid var(--color-blue);		
	}

	.btn-outline-blue:hover svg path,
	.btn-outline-blue:focus svg path,
	.btn-outline-blue:active svg path,
	.btn-outline-blue.active svg path {
		fill: #fff;
	}

	.btn-outline-blue:disabled,
	.btn-outline-blue.disabled,
	.btn-outline-dgray:disabled,
	.btn-outline-dgray.disabled {
		color: #a6aab3;
		background-color: 1px solid #a6aab3;
	}

.btn-custom-dblue {
  color: #ffffff !important;
  background-color: var(--color-dblue);
}

	.btn-custom-dblue:hover {
		background-color: #315a86;
	}

	.btn-custom-dblue:focus,
	.btn-custom-dblue:active,
	.btn-custom-dblue.active {
	  color: #fff;
	  background-color:  #274d75 !important;
	}

.btn-custom-green {
  color: #ffffff !important;
  background-color: var(--color-green)
}

	.btn-custom-green:hover {
		background-color: #16a34a;
	}

	.btn-custom-green:focus,
	.btn-custom-green:active,
	.bbtn-custom-green.active {
	  color: #fff;
	  background-color: #15803d !important;
	}

.btn-custom-gray {
  color: #ffffff !important;
  background-color: var(--color-gray);
}

	.btn-custom-gray:hover {
		background-color: #475569;
	}

	.btn-custom-gray:focus,
	.btn-custom-gray:active,
	.btn-custom-gray.active, {
	  color: #fff;
	  background-color: #334155 !important;
	}

.btn-outline-dgray {
  color: var(--color-dgray);
  background-color: transparent;
  border: 1px solid var(--color-dgray);
}

	.btn-outline-dgray:hover,
	.btn-outline-dgray:focus,
	.btn-outline-dgray:active,
	.btn-outline-dgray.active {
		background-color: #f3f4f6;
	}

/*--------------------------------------------------------------
11.0 Forms
--------------------------------------------------------------*/

form label,
label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.86rem;  /* ~12px if 1rem=14px */
  line-height: 1.29rem;  /* ~18px */
  color: #6B7280;
}

/* Applies to native form controls and plugin-generated elements */
form select,
form textarea,
[type="text"],
[type="password"],
[type="email"],
[type="date"],
[type="search"],
[type="url"],
[type="tel"],
[type="number"],
[type="datetime-local"],
[type="time"],
select,
textarea
input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="date"].form-control,
input[type="search"].form-control,
input[type="url"].form-control,
input[type="tel"].form-control,
input[type="number"].form-control,
input[type="datetime-local"].form-control,
input[type="time"].form-control,
textarea.form-control,
select.form-select{
  font-family: 'Inter', sans-serif;
  font-size: 1rem;             /* ~14px if 1rem=14px */
  line-height: 1.5;            /* ~21px for comfortable spacing */
  color: #6B7280;
  background-color: #fff;
  border-radius: 0.25rem;
  min-height:2.8rem;
  height: auto !important;

  /* Typical Bootstrap padding & transitions */
  padding: 0.375rem 0.75rem;   /* ~5.25px / 10.5px */
  transition: border-color 0.15s ease-in-out,
              box-shadow 0.15s ease-in-out;
}

  

/*--------------------------------------------------------------
12.0 Alerts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
13.0 Universal Class
--------------------------------------------------------------*/
.space {
	display: block;
}

label.btn.btn-elongated svg.checkbox-icon {
	margin-top: 4px;
	margin-bottom: -4px;
}

button.btn.btn-elongated svg.btn-icon {
	margin-top: 4px;
	margin-bottom: -4px;
}

.confirm__header {
	color: #4B5563;
	font-size: 17.5px;
	font-weight: 700;
}

.confirm__body {
	color: var(--color-gray);
	font-size: 14px;
	font-weight: 400;
}

/*--------------------------------------------------------------
14.0 List Style
--------------------------------------------------------------*/
.ul-lnone-inline {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0
}

	.ul-lnone-inline li {
		display: inline-block;
	}

.ul-lnone-block {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0
}

	.ul-lnone-block li {
		display: block;
	}

	.ul-lnone-block li a {
		display: block
	}

/*--------------------------------------------------------------
15.0 Vertical Horizontal Center
--------------------------------------------------------------*/
.vertical-horizontal-center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	
}

/*--------------------------------------------------------------
15.0 Vertical Horizontal Center
--------------------------------------------------------------*/

.badge {
    display: inline-flex; /* or display: flex; if you prefer a block-level element */
    align-items: center;
    justify-content: flex-start; /* adjust to 'center' if you also want horizontal centering */
    padding: 0.4rem 0.4rem;
    border-radius: 6px;
    gap: 3.5px;
    font-size: 10.5px;
    font-weight: 600;
    line-height: normal;
    word-wrap: break-word;
	vertical-align: middle;
}

.badge-lgray {
	background-color: #9e9e9e !important; /* Green */
	color: white !important;
	border: none;
	transition: background-color 0.3s ease-in-out;
}


.badge-mblue {
	background-color: #3b82f6 !important; /* Green */
	color: white !important;
	border: none;
	transition: background-color 0.3s ease-in-out;
}

a.badge-lgray:hover, a.badge-lgray:focus {
	outline: 0;
	background-color: #7e7e7e !important; /* Darker Green */
	
}

a.badge-lgray:focus {
	
	box-shadow: 0 0 0 0.2rem rgba(100, 116, 139, 0.5); 
}

a.badge-lgray:active {
	background-color: #7e7e7e !important; /* Even Darker Green */
	box-shadow: 0 0 0 0.2rem rgba(100, 116, 139, 0.5); 
}

/* Disabled Badge Button */
a.badge-lgray:disabled, a.badge-lgray.disabled {
	background-color: #7e7e7e !important; /* Custom disabled color (Red-Orange) */
	color: white !important;
	opacity: 0.5; /* Reduced visibility */
	pointer-events: none; /* Prevent interaction */
}
  

/* WebKit Browsers (Chrome, Safari, Edge) */
.scrollable-container::-webkit-scrollbar {
	width: 10px; /* Adjust width as needed */
}

.scrollable-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.scrollable-container::-webkit-scrollbar-thumb {
	background: transparent; /* Hides the thumb by making it transparent */
	border-radius: 8px; /* If you ever decide to show a thumb, it will have rounded edges */
}

/* Optionally, if you want the thumb to remain hidden on hover as well */
.scrollable-container::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.5);
}

.scrollable-container {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
	overflow-y: auto; /* scroll if content grows beyond container's height */
}
  
.scrollable-container::-webkit-scrollbar-button {
	display: none;
  }


hr{
  margin-top: 16px;
  margin-bottom: 16px;
  border: none;
  border-top: 1px solid #E5E7EB;
  opacity: 1;
}

.btn-sm{
	font-size:1rem;
}