:root{
    --main-bg-color: #c6ccc4;
    --dialog-bg-color: rgb(248,249,250);
    --corporate-green: #2e652c;
    --btn-bg-color: linear-gradient(to right, #f5e727, #f3b325);
    --btn-bg-color-hover: linear-gradient(to right, #f3b325, #f5e727);

	--btn-bg-clear-color: #020c41;/*linear-gradient(159deg, rgba(34,0,85,1) .69%, rgba(153,85,255,1) 100%);*/
	--btn-bg-clear-color-hover:  #041a8d; /*linear-gradient(159deg, rgba(153,85,255,1) .69%, rgba(34,0,85,1) 100%);*/

	--btn-shadow:0px 0px 9px 0px rgba(153,85,255,1);
	--btn-disabled: #444a59;
	--btn-enabled: #5b5c5d;
	--dropdown-bg-color: linear-gradient(149.92deg, #FF7E47 .69%, #FA6746 10.61%, #FA4B82	20.65%, #ea014b 116.44%);

	--dropdown-border-radius: 15px;
	--header-border-radius: 20px;
	--header-border-radius-mobile: 25px;
	--chat-toggle-border-radius: 25px;
	--sidebutton-border-radius: 20px;
	--avatar-shrink-size: 60vh;

    --chat-desktop-bg-color: #ffffff00;
    --chat-tablet-bg-color: var(--chat-desktop-bg-color);
    --chat-mobile-bg-color: var(--chat-desktop-bg-color);
	--chat-bg-color: linear-gradient(159deg, #020c41, #0a1964 80%, #041a8d 120%);
	--bubbles-bot-bg-color: rgba(250, 250, 250, 0.95);
	--bubbles-bot-font-color: #2c2c2c;
	--bubbles-user-bg-color: linear-gradient(to right, #f5e727, #f3b325);
	--bubbles-user-bg-color-tablet: linear-gradient(to right, #f5e727, #f3b325);
	--bubbles-user-font-color: var(--corporate-green);
    /*https://angel-rs.github.io/css-color-filter-generator/*/
    --chat-send-filter: brightness(0) saturate(100%) invert(27%) sepia(76%) saturate(394%) hue-rotate(70deg) brightness(101%) contrast(88%);
}

html,
body {
   margin: 0;
   padding: 0;
    background: var(--main-bg-color);
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    overflow: hidden;
    background: url('../images/GSIbg.jpg') no-repeat center center fixed;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    /*text-align: center;*/
}

#header {
    position: absolute;
    width: calc(100vw - 40px);
    top:0;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
    z-index: 1000;
    font-size: large;
    gap: 20px;
    background: linear-gradient(to bottom, #dddddd59, #00000000);

}

#user-info {
    padding-left:10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    align-content: center;
    color: var(--corporate-green);
    font-weight: bold;
    background:var(--btn-bg-color);
    border-radius: 10px;
    box-shadow: #ffffff3d 0px 0px 10px;
}
#user-info form button {
    background: var(--btn-bg-color-hover);
    border-radius: 10px;
    cursor: pointer;
    padding: 5px;
    border-color: var(--corporate-green);
    border-width: 2px;
    color: var(--corporate-green);
}
#user-info form button:hover {
    background: var(--btn-bg-color);
}

#left-header {
    display: flex;
    align-items: center;
    gap: 20px;
    align-content: center;
    display: flex;
    justify-content: space-between;
}
#left-header form button {
    margin-top:15px;
}

#right-header {
    align-self: center;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

a:link {
    color: #2e652c;
}

a:hover {
    color: #1e721b;
}

a:visited {
    color: #1e721b;
}

#content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    margin:0;
    padding: 0;
}

#non-logged-in {
    /* LARGE TEXT IN THE MIDDLE OF THE SCREEN */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--dialog-bg-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 80%;
    margin: 0 auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

#avatarlogo img {
    max-height: 100px;
}

.admin-link {
    max-width: 150px;
    width:auto;
    text-align: center;
}

#non-logged-in h2.corporate-green {
    color: var(--corporate-green);
}

#dropdown{
    position: relative;
    display: inline-block;
}

.drop-text {
    vertical-align: middle;
}

#dropdown-content {
    display: flex;
    flex-direction: column;
    position: absolute; 
    min-width: 100px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1; 
    border-radius: 6px;
    background: var(--btn-bg-color);
    padding:5px;
}

#user-info form #language-btn {
    border: none;
    cursor: pointer;
    background: none;
    background-color: transparent;
}
#user-info form button.drpdwn-ctn-btn {
    margin-top:unset;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}