
:root {
	--menu-height: 50px;
	--menu_top: 55px;
	--menu_primary_color: #232323;
	--highlight_color: #f99c24;
	}

body {
	margin: 0px;
	font-family: "Roboto", sans-serif;
	background-color: #ebebeb;
	display: flex;
    flex-direction: column;
}

::-webkit-scrollbar
	{
    width: 6px;
    height: 0px;
	}
::-webkit-scrollbar-button
	{
    background: #888;
    height:0px;
	}
::-webkit-scrollbar-track-piece
	{
    background: #888;
	}
::-webkit-scrollbar-thumb
	{
    background: #f49b25;
	}

#framework_menu{
	background-color: var(--menu_primary_color);
    color: white;
    height: var(--menu-height);
    border-radius: 0px 0px 8px 8px;
    position: fixed;
    width: 100%;
	display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
	z-index: 10000000000000;
	}

#framework_menu_username_container{
	height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--highlight_color);
	flex-grow: 1;
	justify-content: flex-end;
	flex-basis: 0;
}

#framework_username_button{
    background-color: #3b3b3b;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
	user-select:none;
}

#framework_username_button:hover
	{
	background-color:#535353;
	}

#framework_page{
	margin-top: var(--menu-height);
	padding:20px;
	}

#framework_menu_left_container{
	display: flex;
    height: 100%;
	flex-grow: 1;
	flex-basis: 0;
}

#framework_menu_logo{
	height: 100%;
    box-sizing: border-box;
}

#framework_menu_button{
	height: 100%;
    padding: 20%;
    box-sizing: border-box;
}

#framework_menu_page_name{
	height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: white;
	user-select: none;
}

#framework_main_menu_container{
	position: fixed;
    width: 100%;
    height: 100%;
	z-index: 10000000000000;
	display:none;
	opacity: 0; /* Start fully transparent */
    transition: opacity 0.2s ease; /* Smooth transition for opacity */
}

#framework_main_menu{
	background-color: var(--menu_primary_color);
	position:fixed;
    top: var(--menu_top);
    left: 5px;
    padding: 20px;
    border-radius: 10px;
    color: white;
	z-index: 100000000000000;
	height: 80%;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 600px;
    max-height: 850px;
	max-width: 90%;
}

#framework_menu_page_name{
	flex-grow: 0;
}

#framework_notification
	{
	position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(5px);
    user-select: none;
	background-color: #232323f2;
	display:none;
	}

#framework_popup
	{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #0000005e;
	display: none;
	align-items: center;
	flex-direction: row;
	justify-content: space-evenly;
	z-index: 100;
	}

#framework_popup_conts
	{
	background-color: white;
    padding: 30px;
    border-radius: 10px;
	}

#framework_toast
	{
	position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    padding: 10px 0px 10px 0px;
    color: white;
    background-image: linear-gradient(to right, #00000082, var(--menu_primary_color), #00000082);
    opacity: 0;   /* Initially completely transparent */
    transition: opacity 0.5s ease-in-out; /* Add transition */
	display:none;
	}

#framework_login_container
	{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	}

#framework_login
	{
	padding:20px;
	}

#login_logo
	{
	width:400px;
	}

#framework_logout_menu
	{
	background-color: var(--menu_primary_color);
    position: fixed;
    top: var(--menu_top);
    right: 5px;
    padding: 10px;
    border-radius: 10px;
    z-index: 100000000000000;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--highlight_color);
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	}

#framework_logout_menu_container{
	position: fixed;
    width: 100%;
    height: 100%;
	z-index: 10000000000000;
	display:none;
	opacity: 0; /* Start fully transparent */
    transition: opacity 0.2s ease; /* Smooth transition for opacity */
}

#framework_proj_menu_table
	{
	color:white;
	}

#framework_outter_main_menu
	{
	height: 100%;
	display: flex;
	flex-direction: column;
	}

#framework_search_mm
	{
	display: flex;
    width: 100%;
    justify-content: space-between;
	align-items: center;
	}

#framework_main_menu_searchbox
	{
	width: 100%;
	border: 1px solid black;
	border-radius: 6px;
	font-size: 15px;
	padding: 5px;
	outline: none;
	}

#framework_main_menu_all_apps_button
	{
	width: 100px;
	height: 30px;
	background-color: var(--highlight_color);
	border: 1px solid black;
	cursor:pointer;
	}

#framework_main_menu_program_list
	{
	display: flex; 
	flex-direction: row; 
	margin-top: 10px; 
	height: 100%;
	overflow:hidden;
	}

.login_form
	{
	display: flex;
    flex-direction: column;
	}

.container
	{
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 1px solid #999999;
	border-radius: 6px;
	}

.framework_logout_menu_item
	{
	width: 100%;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	cursor:pointer;
	user-select: none;
	}

.framework_logout_menu_item:hover
	{
	background-color:#333333;
	}

.framework_main_menu_item
	{
	display: flex;
    flex-direction: row;
    align-items: center;
    background-color: 444444;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
	user-select: none;
	cursor:pointer;
	}
.framework_main_menu_item:hover
	{
	background-color:#333333;
	}

.framework_main_menu_star
	{
	height: 30px;
	margin-right: 10px;
	}

.framework_main_menu_button
	{
	background: #00000000;
    border: 1px solid white;
    color: white;
    margin-right: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
	cursor:pointer;
	}
	
.break_modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 2001; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.801); /* Black w/ opacity */
	color: #f49b25;
	font-size: 12vw;
}

/* Modal Content/Box */
.break_modal_content {
	margin: 0% auto; /* 15% from the top and centered */
	padding: 20px;
	width: 80%; /* Could be more or less, depending on screen size */
	text-align: center;
	height: 30%;
}

.resume_button {
	width: 75vw;	
}

.framework_tab_selected
	{
	background-color: #f49b25;
    color: rgb(0 0 0);
    padding: 15px 20px;
    display: inline-block;
    border-image: initial;
    border-bottom-style: initial;
    border-bottom-color: initial;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 10px;
    cursor:pointer;
    user-select: none;
	}

.framework_tab
	{
	background-color: #444444;
    color: rgb(255 255 255);
    padding: 15px 20px;
    display: inline-block;
    border-image: initial;
    border-bottom-style: initial;
    border-bottom-color: initial;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 10px;
    cursor:pointer;
    user-select: none;
	}

.link_text
	{
	color: #955100;
	cursor: pointer;
	font-weight: bold;
	}

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