@font-face 
{
	font-family: 'password';
	font-style: normal;
	font-weight: 400;
	font-display:swap;
	src: url('/fonts/password.ttf');
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SegoeUI.ttf') format('truetype');
    font-weight: 400;
	font-display:swap;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SegoeUIB.ttf') format('truetype');
    font-weight: 700;
	font-display:swap;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGOEUII.TTF') format('truetype');
    font-weight: 400;
	font-display:swap;
    font-style: italic;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGOEUIL.TTF') format('truetype');
    font-weight: 300;
	font-display:swap;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGOEUISL.TTF') format('truetype');
    font-weight: 350;
	font-display:swap;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGOEUIZ.TTF') format('truetype');
	font-display:swap;
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUIBL.TTF') format('truetype');
	font-display:swap;
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUIBLI.TTF') format('truetype');
	font-display:swap;
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUILI.TTF') format('truetype');
	font-display:swap;
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUISB.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
	font-display:swap;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUISBI.TTF') format('truetype');
	font-display:swap;
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/SEGUISLI.TTF') format('truetype');
	font-display:swap;
    font-weight: 350;
    font-style: italic;
}

	/* Reset margin and padding */
body, html 
{
	height: 100%;
	margin: 0;
	overflow-y: hidden;
	overflow-x:hidden;
	padding: 0;
	background: var(----body-background-grey);
	font-family: 'Segoe UI',Calibri, sans-serif;
}

/* Full-width background */
.menu-background {
	background-color: var(----body-background-grey);
	width: 100%;
	height: 25px;
	border-bottom:2px solid var(--body-background-grey);
}

/* Centering the menu items */
.menu-center {
	display: flex;
	justify-content: center;
	height: 25px;
}

/* Menu bar styling */
.menu-bar {
	background-color: transparent;
	overflow: hidden;
	display: inline-flex;
	list-style: none;
}

		/* Menu item styling */
.menu-bar a {
	font-family: 'Segoe UI',arial,sans-serif; /* Set Segoe UI as the font-family */
	text-align: center;
	line-height: 23px;
	color: black; /* Default text color */
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	margin-left: 20px;
	margin-right: 20px;
	transition: background-color 0.3s, color 0.3s; /* Added transition for color */
	display: block;
	white-space: nowrap;
	padding-left: 2px; /* 10 pixels padding on the left */
	padding-right: 2px; /* 10 pixels padding on the right */
}

.hidden {
	display: block;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

#mainbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100vh;
    overflow-y: hidden;
    margin: 0px 5px;
    border: 1px solid #d1d1d1;
    border-radius: 8px 8px 0px 0px;
    background: #f0f4f9;
    flex-grow: 0;
}

#logo {
	margin-top:-150px;
	width:500px;
    max-width: 80vw; /* Limits image width on smaller screens */
    height: auto; /* Maintains aspect ratio */
}

#text {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
	font-weight:700;
    color: #0096cf;
    text-align: center;
    margin-top: 10px; /* Space between image and text */
}

/* Media query for devices with a width less than 1000px */
@media (max-width: 1000px) {
    #oauthtable {
        width: 100%; /* Ensures the table takes full width of the viewport on smaller screens */
    }

    .authIndexParagraphDetail, .authIndexParagraphText, .authIndexWarning {
        font-size: calc(12px + 0.5vw); /* Scales text size based on the viewport width */
    }
}

/* Ensures text does not scale down too small */
@media (max-width: 400px) {
    .authIndexParagraphDetail, .authIndexParagraphText, .authIndexWarning {
        font-size: calc(12px + 1vw); /* Slightly larger minimum font size on very small screens */
    }
}

#screenTimeout {
    position: fixed;
    top: 3px;
    right: 50px;
    background-color: white;
    padding: 0px;
    border: none;
    font-size: 12px;
    color: black;
    z-index: 1000; /* Ensures it stays on top */
}
	
/* Container holding the ribbon and mainbody */
.container {
	display: flex;
	flex-direction: column;
	height: 100vh; /* Use the full viewport height */
	width: 100vw; /* Use the full viewport width */
	overflow: hidden; /* Prevent scroll on the container */
}

.close-button {
	width: 45px; /* Adjust as per your image's size */
	height: 25px; /* Adjust as per your image's size */
	background-image: url('/images/close.png');
	background-size: cover;
	cursor: pointer;
	transition: background-image 0.2s ease-in-out;
	position: fixed; /* Stick to the viewport */
	top: 0;
	right: 0;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/**************************************************************************************************************/
/* Variables to set standard colors - use as var(--button-text) in place of #00aacc etc */
/**************************************************************************************************************/
:root {
	--button-blue: #106ebe;
	--google-red: #DB4437;
	--google-green: #0F9D58;
	--google-blue-original: #4285F4;
	--google-blue-mid: #1976D2;
	--google-blue-dark: #0D47A1;
	--google-yellow: #F4B400;
	--button-text: #ffffff;
	--button-hover-background: #2a8bf2; /* Lighter shade of blue */
	--button-hover-text: #ffffff; /* Maintaining white for contrast */
	--button-hover-border: #0d5ba9; /* Slightly darker blue for depth */
	--body-background-grey: #f0f0f0;
    --button-disabled-background: #e0e0e0; /* Muted background for disabled button */
    --button-disabled-text: #9e9e9e; /* Muted text color for disabled button */
    --button-disabled-border: #d3d3d3; /* Muted border color for disabled button */
}

/**************************************************************************************************************/
/* Styles for input text boxes and dropdown lists */
/**************************************************************************************************************/

/* Global style to remove default focus outline for inputs and select boxes */
input:focus, select:focus {
    outline: none; /* Removes the default focus outline */
    border: 1px solid var(--button-hover-border); /* Optional: Add a custom border for focused elements */
    box-shadow: 0 0 3px var(--button-hover-border); /* Optional: Add a subtle shadow for focused elements */
}

/**************************************************************************************************************/
/* Styles for scrol bars */
/**************************************************************************************************************/

/* Global styling for scrollbars on the page */
@supports not selector(::-webkit-scrollbar) {
    * {
        scrollbar-width: thin; /* Set the width of the scrollbar */
        scrollbar-color: #888 #f1f1f1; /* Set the colors for the thumb and track */
    }
}

*::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 10px;
    background-color: #f1f1f1; /* Light background for the track */
    cursor: pointer; /* Change cursor to pointer */
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #888, #a8a8a8 50%, #888); /* Gradient for thumb */
    border-radius: 5px; /* Rounded corners */
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); /* Inner shadow for a 3D effect */
    cursor: pointer; /* Change cursor to pointer */
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #777, #979797 50%, #777); /* Darker gradient on hover */
    cursor: pointer;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Container for dialog buttons */
.dialogButtonContainer {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

/* General style for dialog buttons */
.dialogButton {
	font-size:24px;
  background: var(--button-blue);
  color: var(--button-text);
  border: 2px solid transparent; /* Modern look with transparent border initially */
  padding: 10px 20px;
  margin-right: 10px; /* Adjust if necessary for cancelButton */
  border-radius: 5px;
  cursor: pointer;
  text-decoration:none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
}

/* Specific style adjustments for the OK button */
.dialogButtonOk {
  margin-left: 10px;
}

/* Hover styles for dialog buttons */
.dialogButton:hover {
  background: var(--button-hover-background); /* Assuming a lighter or different shade for hover */
  color: var(--button-hover-text); /* Usually white or a contrasting color */
  border-color: var(--button-hover-border); /* A solid color to stand out on hover */
}

.dialogBox {
	position:relative;
	background: white; 
	margin: 20px; 
	border-radius: 10px; 
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
	font-family: "Roboto", sans-serif; 
	text-align: center; 
	display: flex; 
	flex-direction: column; 
	padding-bottom: 20px;
}

.dialogBoxOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity:0;
	transition: opacity 200ms ease-in-out;
}

.dialogBoxTitleBar {
	background: var(--button-blue);
	color: white;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.dialogBoxTextArea {
	font-family:roboto;
	color: #504d46;
	font-size:16px;
	margin-top: 20px;
	padding: 0 20px;
	text-align:justify;
	line-height:1.5
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 10; /* Adjust as needed */
}

.divLoader {
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 5px solid #3498db; /* Blue */
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ccsAuth-container {
    width: 50vw;
    margin: auto; /* Center the container horizontally */
    margin-top: 0vw; /* Start 6vw from the top of the viewport */
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    cursor: default;
    justify-content: flex-start; /* Aligns content at the top of the container */
    overflow-y: auto; /* Enable vertical scrolling if content is too tall */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow for depth */
}

.ccsAuth-container2 {
    width: 50vw;
    margin: auto; /* Center the container */
	margin-top:2.604vw;
	background-color: #ffffff;
    padding: 1.04vw;
    border-radius: 1.56vw;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
	cursor:default;
	justify-content: center; /* Centers content vertically */
}

#container {
    display: flex;
    flex-direction: column;
}

.scope-link {
	font-family:Segoe UI;
	font-size: 0.833vw;
    cursor: help;
    color: #000;
	font-weight:450;
    text-decoration: none; /* Removes underline */
    display: block; /* Ensures each scope is on a new line */
}

.OAuthTooltip-tooltip {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 0.26vw;
    padding: 0.52vw;
    position: absolute;
    z-index: 1000;
    box-shadow: 0 0.2vw 0.4vw rgba(0,0,0,0.1);
    display: none; /* Initially hidden */
    opacity: 0; /* Ready for fade-in */
    transition: opacity 0.3s ease-in-out; /* Smooth fade effect */
    max-width: 31.25vw; /* Maximum width of the tooltip */
	text-align:justify;
}

.tooltip-content {
	font-family:'Segoe UI';
    padding: 0.52vw;
	font-size:0.7vw;
}

.oauth_labels {
	font-family:Segoe UI;
	font-size: 0.833vw;
    color: #000;
	position:relative;
	cursor:pointer;
	display: block; 
	margin: 0px;
}

.oauth_radio_buttons {
	margin-right: 0.45vw; 
	transform: scale(1.25);
}

.oauth_dot_point {
	margin-left:0.26vw;
	margin-top:2px;
	width:0.52vw;
	height:0.52vw;
	border-radius:50%;
	background:var(--google-blue-mid);	
}
.oauth_dialogButton {
	@extend .dialogButton;
	background:var(--google-blue-mid);
}

.form-container {
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
	font-family:roboto;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.form-input {
    width: 100%;
    padding: 8px;
    font-size: 18px;
    border: 1px solid #ccc;
	color:#e88e2d;
    border-radius: 5px;
	font-weight:bold;
	text-align:center;
    box-sizing: border-box; /* Makes sure padding doesn't affect the width */
}

.form-input:focus {
    width: 100%;
    padding: 8px;
    font-size: 18px;
    border: 1px solid var(--google-blue-dark);
	color:#e88e2d;
    border-radius: 5px;
	font-weight:bold;
	text-align:center;
    box-sizing: border-box; /* Makes sure padding doesn't affect the width */
}

.form-input-password {
	font-family:password;
	font-size:24px;
	color:#e88e2d;
	text-align:center;
    width: 100%;
    padding: 4px;
	font-weight:bold;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Makes sure padding doesn't affect the width */
}

.form-input-password:focus {
	font-family:password;
	font-size:24px;
	color:#e88e2d;
	text-align:center;
    width: 100%;
    padding: 4px;
	font-weight:bold;
    border: 1px solid var(--google-blue-dark);
    border-radius: 5px;
    box-sizing: border-box; /* Makes sure padding doesn't affect the width */
}

.form-button {
    padding: 10px 20px;
    background-color: var(--google-blue-mid);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.authIndexHtml { background: #f0f4f9; }
.authIndexBody { margin: 0; background: #f0f4f9}
.authIndexFirstDiv { width: 100%; height: 6.9vw; position: relative; top: 0; left: 0; background: #eb8d21; }
.authIndexSecondDiv { width: 100%; height: 4.38vw; position: absolute; top: 0; left: 0; background: #0e2747; }
.authIndexWarning { width: 100%; height: 0.9vw; position: absolute; top: 6.90vw; left: 0; background: #cc0000; text-align: center; color: #ffffff; font-size: 0.65vw; font-family: roboto; padding-top: 1px; text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5); cursor: pointer; }
.authIndexImgExperience, .authIndexImgPhone, .authIndexImgLogo, .authIndexImgGoogle, .authIndexImgOauth { position: absolute; top: 0.1vw; height: 3.7vw; }
.authIndexImgExperience { left: 50%; transform: translateX(-50%); }
.authIndexImgPhone { right: 4.7vw; }
.authIndexImgLogo { left: 4.7vw; top: 0.26vw; max-height: 100%; }
.authIndexImgGoogle { left: calc(50% - 12.5vw); top: 0.26vw; }
.authIndexImgOauth { left: calc(50% + 8.854vw); top: 0.26vw; }
.authIndexAuthorizeTitle { position: absolute; width: 100%; top: 4.427vw; font-family: roboto; font-size: 1.8vw; color: #ffffff; text-align: center; font-weight: 900; text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5); }
.authIndexMainBody { width: 100%; background: #f0f4f9; }
.authIndexBorderDiv { }
.authIndexTable, .authIndexInnerTable { width: 100%; }
.authIndexTableTd { vertical-align: top; }
.authIndexParagraph { font-family: roboto, sans-serif; color: #504d46; padding: 0px 1vw 0px 1vw; }
.authIndexParagraphText { position: relative; padding-bottom: 0px; margin-bottom: 0px; top: -1.2vw; text-align: center; font-size: 1.8vw; font-weight: 900; color: var(--google-blue-mid); }
.authIndexParagraphDetail { text-align: justify; font-family: Segoe UI; font-size: 14px; line-height: 1.3; }
.authIndexForm { font-family: Segoe UI, sans-serif; font-size: 1vw; margin-top: 0.5vw; }
.authIndexFormTd {vertical-align:top}
.authIndexOptionTable { position: relative; width:30vw;left: 0px; border: 1px solid var(--google-blue-mid); }
.authIndexHeaderTd { background: var(--google-blue-mid); padding: 0px; }
.authIndexHeaderDiv { cursor: default; background:var(--google-blue-mid);padding:3px;width: 100%; text-align: center; color: #ffffff; font-size: 1.0vw; }
.authIndexRadioTd { padding: 0.26vw 0px 0.26vw 0.4vw; }
.authIndexLabelTd { text-align: justify; }
.authIndexDefault { color: var(--google-blue-mid); font-weight: bold; }
.authIndexSpacingDiv { width: 0.5vw; height: 1.562vw; }
.authIndexContainer { display: flex; width: 100%; justify-content: center; }
.authIndexPrivacyButton, .authIndexLinkButton { position:relative; top:0.521vw; margin-bottom: 0.521vw; margin-top:1.04vw; font-size:0.9vw; }
.authIndexPrivacyButton { background:#e88e2d; }
.authIndexLinkButton { background: var(--google-blue-mid); }
.authIndexScopeTable { border: 1px solid var(--google-blue-mid); cursor: default; }
.authIndexScopeHeader { cursor: default; width: 100%; text-align: center; color: #ffffff; font-size: 1.0vw; }
.authIndexScopeSubHeader { font-size: 0.7vw; text-align: center; color: #eeeeee; background:var(--google-blue-mid);padding:0px 0px 3px 0px}
.displayNone { display:none;}
.displayBlock { display:block;}
.emptyRowSpace {height:0.26vw;max-height:0.26vw;padding:0px;}
.tdDotPointStyle {padding:0.26vw 0px 0.26vw 0px;}
.buttonContainerStyle {display: flex; width:100%;justify-content: center;}
.blueHighlight {color:var(--google-blue-mid);font-weight:bold;text-decoration:none}
.rowBackground {background:#00aa00;background:none !important;border:5px #00aa00 solid}
.rowBackgroundHighlight {background:#ffffaa !important;border:2px solid #ff0000;}

.success-table {
	width: 20vw; /* Responsive width */
	font-family:roboto;
	font-size:0.73vw;
	margin: 20px auto; /* Centers the table and adds vertical spacing */
	border-collapse: seperate; /* Collapses border to look cleaner */
	box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Adds subtle shadow for depth */
	background-color: rgb(231, 240, 255); /* Sets a white background for the table */
	border-radius:10px;
	overflow: hidden;
}

.success-table th, .success-table td {
	border: 1px solid #cccccc !important; /* Light grey border for each cell */
	padding: 8px 12px; /* Padding inside cells */
	text-align: left; /* Aligns text to the left */
	vertical-align: top; /* Aligns content to the top */
}

.success-table th {
	background-color: #f5f5f5; /* Light grey background for headers */
	font-weight: normal; /* Normal font weight for a modern look */
}

.success-table td:first-child {
	white-space: nowrap; /* Ensures the text does not wrap */
}

.oauthLinkedDivPrimary {
    width: 100%; height: 6vw; position: relative; top: 0px; left: 0px; background: #eb8d21;
}
.oauthLinkedDivSecondary {
    width: 100%; height: 4.38vw; position: absolute; top: 0px; left: 0px; background: #0e2747;
}
.oauthLinkedImgExperience, .oauthLinkedImgPhoneNumber, .oauthLinkedImgLogo, .oauthLinkedImgGoogle, .oauthLinkedImgOauth2Shiny {
    position: absolute; top: 0px; 
}
.oauthLinkedImgExperience { left: 50%; transform: translateX(-50%); height: 3.9vw; }
.oauthLinkedImgPhoneNumber { right: 4.7vw; height: 4.323vw; }
.oauthLinkedImgLogo { left: 4.7vw; top: 0.26vw; height: 3.9vw; max-height: 100%; }
.oauthLinkedImgGoogle { left: calc(50% - 12.5vw); top: 0.26vw; height: 3.646vw; }
.oauthLinkedImgOauth2Shiny { left: calc(50% + 8.854vw); top: 0.26vw; height: 3.646vw; cursor: pointer; }
.oauthLinkedAuthorizationStatus {
    position: absolute; width: 100%; top: 4.46vw; font-family: Roboto; font-size: 1.8vw; color: #ffffff; text-align: center; font-weight: 900; text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5);
}
.oauthLinkedMainBody 
{
    height: 100%; width: 100%; background: #f0f4f9;
}
.oauthLinkedTableContainer 
{
    border: 1px solid #ccc; border-radius: 0.4vw; padding: 0.7vw;
}
.oauthLinkedTable 
{
    width: 100%;
}
.oauthLinkedProfilePic {
    display: block; width: 80px; height: auto; border: 1px solid #5383f3; border-radius: 50px;
}
.oauthLinkedOAuthSuccess {
    text-align: center; font-size: 1.8vw; font-weight: 900; color: var(--google-blue-mid);
}
.oauthLinkedSmileyThumbs {
    display: block; width: auto; height: 80px;
}
.oauthLinkedSuccessMessage, .oauthLinkedPrivacyPolicy {
    text-align: justify; font-family: Roboto; font-size: 0.8vw; line-height: 1.35;
}

.tableWrapperWrapper
{
    background-color: #e7f0ff;    /* Sets the background color of the table */
	
}
/* Style for the entire table */
.tableWrapper {
    background-color: #e7f0ff;    /* Sets the background color of the table */
	border:1px solid #eee;
    border-radius: 10px;          /* Rounded corners for the wrapper */
    overflow: hidden;             /* Ensures that overflow content respects rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds a shadow to the wrapper */
    display: inline-block;
	padding:10px;	
	margin:25px;
}
/* Style for the entire table */
.oauthLinkedSuccessTable 
{
    width: auto;                  /* Adjusts width to fit content */
    border-collapse: collapse;    /* Collapses borders together */
}

/* Style for each cell in the table */
.oauthLinkedSuccessTable td {
    border: 2px solid white;   /* 2px white border for each cell */
    vertical-align: top;       /* Aligns content to the top of the cell */
    text-align: left;          /* Aligns text to the left of the cell */
    padding: 10px;             /* Optional: adds space inside each cell around the content */
}

/* Additional styling to handle the rounded corners for cells in the first and last rows */
.oauthLinkedSuccessTable tr:first-child td:first-child {
    border-top-left-radius: 10px; /* Rounds the top left corner of the first cell in the first row */
}

.oauthLinkedSuccessTable tr:first-child td:last-child {
    border-top-right-radius: 10px; /* Rounds the top right corner of the last cell in the first row */
}

.oauthLinkedSuccessTable tr:last-child td:first-child {
    border-bottom-left-radius: 10px; /* Rounds the bottom left corner of the first cell in the last row */
}

.oauthLinkedSuccessTable tr:last-child td:last-child {
    border-bottom-right-radius: 10px; /* Rounds the bottom right corner of the last cell in the last row */
}


.oauthLinkedPrivacyPolicyLink, .oauthLinkedMainSystemLink, .oauthLinkedAuthorizeAnother {
    color: #5383f3; text-decoration: none; font-weight: 700;
}

.oauthErrorHtml {
    background: #f0f4f9;
}
.oauthErrorDivPrimary {
    width: 100%; 
    height: 6.9vw; 
    position: relative; 
    background: #eb8d21;
}
.oauthErrorDivSecondary {
    width: 100%; 
    height: 4.38vw; 
    position: absolute; 
    top: 0; 
    left: 0; 
    background: #0e2747;
}
.oauthErrorImgExperience, .oauthErrorImgPhoneNumber, .oauthErrorImgLogo, .oauthErrorImgGoogle, .oauthErrorImgOauth2Shiny {
    position: absolute; 
    top: 0;
}
.oauthErrorImgExperience {
    left: 50%; 
    transform: translateX(-50%); 
    height: 3.9vw;
}
.oauthErrorImgPhoneNumber {
    right: 4.7vw; 
    height: 4.323vw;
}
.oauthErrorImgLogo {
    left: 4.7vw; 
    top: 0.26vw; 
    height: 3.9vw; 
    max-height: 100%;
}
.oauthErrorImgGoogle {
    left: calc(50% - 12.5vw); 
    top: 0.26vw; 
    height: 3.646vw;
}
.oauthErrorImgOauth2Shiny {
    cursor: pointer;
    position: absolute; 
    left: calc(50% + 8.854vw); 
    top: 0.26vw; 
    height: 3.646vw;
}
.oauthErrorAuthorizationStatus {
    position: absolute; 
    width: 100%; 
    top: 4.46vw; 
    font-family: Roboto; 
    font-size: 1.8vw; 
    color: #ffffff; 
    text-align: center; 
    font-weight: 900; 
    text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5);
}
.oauthErrorMainBody {
    height: 100%; 
    width: 100%; 
    background: #f0f4f9;
}
.oauthErrorContainer {
    border: 1px solid #ccc; 
    border-radius: 0.4vw; 
    padding: 0.7vw;
}
.oauthErrorImageTextContainer {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%;

    cursor: default;
}
.oauthErrorSadFace {
    display: block; 
    width: auto; 
    height: 70px; 
    margin-right: 15px;
}
.oauthErrorHeading {
    font-size: 48px; 
    color: #ff2222; 
    margin: 0;
    font-family: Roboto; 
    font-weight: 300;
}
.oauthErrorErrorMessage {
    display: block; 
    text-align: justify; 
    color: #666; 
    font-size: 13pt; 
    margin: 20px 0; 
    width: 100%;

    cursor: default; 
    overflow-wrap: break-word; 
    max-width: 100%;
}
.oauthErrorInnerHeading {
    color: #F44548; 
    font-size: 44px;
    text-align: center;
}
.oauthErrorParagraph {
    margin: 0;
    line-height: 1.7;
    display: inline;
    font-family: Roboto;
    overflow-wrap: break-word; 
    max-width: 100%;
}
.oauthErrorLink {
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    color: #5383f3;
}

.pageBackground {background:#f0f4f9}

.oauthSuccess {
    position: relative;
    bottom: 5px;
    text-align: center;
    margin-bottom: 0px;
}

.oauthSuccess.form-label {
     /* Assuming you have a font named "password" */
}

.oauthSuccess.form-input {
    width: 100px;
}

.oauthSuccess.form-input-password {
    width: 150px;
	font-family: password;
}

/* File: privacy-styles.css */

.privacy-bodydiv {
    font-family: 'Segoe UI', sans-serif;
    margin: 0 auto;
    width: 100%; /* Default to full width for smaller screens */
    max-width: 800px; /* Maximum width of 800px */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    padding: 1.04vw;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-size: calc(12px + 0.20vw);
}

.privacy-h1, .privacy-h2 {
    color: #0056b3;
}

.privacy-a {
    color: #0056b3;
}

.privacy-ul, .privacy-ol {
    padding-left: 1.04vw;
}

.privacy-last-updated {
    font-style: italic;
    color: #666;
}

.privacy-header-bar {
    width: 100%;
    height: 6.9vw;
    position: relative;
    top: 0px;
    left: 0px;
    background: #d0d0d0;
}

.privacy-main-nav {
    width: 100%;
    height: 4.38vw;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #0e2747;
}

.privacy-accent-bar {
    width: 100%;
    height: 0.4vw;
    position: absolute;
    top: 6.9vw;
    left: 0px;
    background: #eb8d21;
}

.privacy-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0.6vw;
    font-family: roboto;
    font-weight: bold;
    color: #f0f4f9;
    font-size: 2.5vw;
    text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5);
}

.privacy-subtitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4.4vw;
    font-family: roboto;
    font-weight: bold;
    color: #ffffff;
    font-size: 2.0vw;
    text-shadow: 2px 2px 0.2vw rgba(0, 0, 0, 0.5);
}

.privacy-container
{
	height:calc(100% - 6.9vw); 
	overflow-y:auto; 
	width:100%;
}

/* CSS for shake animation with custom properties */
.jsFunction-shake {
    animation-name: jsFunction-shake; /* Animation name */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes jsFunction-shake {
    0%, 100% {
        transform: translateX(0);
    }
    50% { /* Middle of the animation where the movement is at its peak */
        transform: translateX(var(--jsFunction-amplitude));
    }
}

/* CSS for custom popup elements */
.jsFunction-dialogBoxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jsFunction-dialogBox {
    width: var(--jsFunction-width, 50%); /* Default width */
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.jsFunction-dialogBoxTitleBar {
    padding: 10px;
    background: var(--jsFunction-headerColor, var(--button-blue)); /* Default header color */
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.jsFunction-contentArea {
    text-align: left;
    border: 1px solid #ccc;
    padding: 5px;
    margin: 20px;
    margin-bottom: 70px;
    overflow: auto;
    flex-grow: 1;
    font-family: 'Lucida Console', monospace;
    font-size: 12px;
 
}

.jsFunction-dialogBoxButtonContainer {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.jsFunction-dialogButton {
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--button-blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.jsFunction-modalAlertPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.jsFunction-alertModal {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 15vw;
    max-width: 60vw;
    font-family: 'Roboto', sans-serif;

    text-align: justify;
    display: flex;
    flex-direction: column;
    width: var(--jsFunction-boxWidth, 30vw); /* Default width */
}

.jsFunction-alertHeader {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.jsFunction-alertBody {
    flex-grow: 1;
    line-height: 1.4;
}

.jsFunction-buttonsContainer {
    align-self: flex-end;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.jsFunction-oauthButton {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--button-blue, #007BFF); /* Default blue color, can be overridden */
    color: white;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; /* Assuming default font size, can be adjusted or removed */
}
.redText {color:#ff0000}

#oauthtable3
{
	font-family:arial; 
	font-size:15px; 
	background-color: #cccccc; 
	border-collapse: separate; 
	border-spacing: 1px; 
	border: 1px solid #cccccc;
}
.oauthtable3col1
{
	background-color: #FFFFFF; 
	border: 1px solid #cccccc;
	font-weight:600;
	padding:10px;
}
.oauthtable3col2
{
	background-color: #FFFFFF; 
	border: 1px solid #cccccc;
	padding:10px;
}
.withover
{
	font-family:arial;
	font-size:0.833vw;
	color:#ffffff;
	position:absolute;
	text-align:left;
	left:43.18vw;
	top:0.412vw;
}
.yearsexperience
{
	font-family:arial;
	font-weight:bold;
	font-size:1.1vw;
	color:#ffffff;
	position:absolute;
	text-align:left;
	left:43.18vw;
	top:1.3vw;
}
.experience
{
	font-family:arial;
	font-weight:normal;
	font-size:1.1vw;
	color:#ffffff;
	position:absolute;
	text-align:left;
	left:49.22vw;
	top:1.3vw;
	letter-spacing: 0.125vw;
}
.locallyowned
{
	font-family:arial;
	font-weight:bold;
	font-size:0.78vw;
	padding:0.11vw 0.26vw 0.11vw 0.26vw;
	color:#ffffff;
	background:#eb8d21;
	position:absolute;
	text-align:left;
	left:43.18vw;
	top:2.66vw;
	border-radius:0.26vw;
	letter-spacing: 0.07vw;
}
#scope_id
{
	position:absolute;
	display:none;
	top:-1000px;
	font-size:0px;
}
.phonenumber
{
	font-family:arial;
	font-weight:bold;
	text-align:right;
	font-size:1.8vw;
	color:#eb8d21;
	position:absolute;
	right:4.8vw;
	top:0.156vw;
	z-index:500;
	letter-spacing: 0.02vw;
}
.mobileservice
{
	font-family:arial;
	font-weight:normal;
	text-align:right;
	font-size:0.80vw;
	color:#ffffff;
	position:absolute;
	right:4.9vw;
	top:2.08vw;
	z-index:500;
	letter-spacing: 0.0vw;
}
.sowardway
{
	font-family:arial;
	font-weight:normal;
	text-align:right;
	font-size:0.80vw;
	color:#ffffff;
	position:absolute;
	right:4.9vw;
	top:3.07vw;
	z-index:500;
	letter-spacing: 0.0vw;
}
.subheading
{
	position:relative;
	top:-35px;
	font-family:roboto;
	font-size:1vw;
	color:#000000;
	font-weight:bold;
	text-align:center;
}