/**********2. TABBER - LEARN TEST IMPROVE TABS**************/

.header-content {
   width: 100%; /* Ensure it takes full width */
   display: flex; /* Use flexbox to align items */
   flex-direction: column; /* Stack items vertically */
   margin-bottom: 10px;
   padding:2px;
}

/* First Line Styling  */
.header-content h1 {
    float: left; /* Float h1 to the left */
    clear: both; /* Prevent floating elements to the side */
    margin-bottom: 5px; /* Optional: Add spacing between h1 and p */
	color:#555;/*grey was black*/	

}

/* Second Line Styling */
.header-content p.risk-line {
    float: left;
    margin-top: 0px; /*Align on same horizontal line */
    clear: both; /* Ensure it starts on a new line */
    display: flex; /* Enables flexbox properties for horizontal alignment */
    align-items: center;  /* Vertically aligns the text and the icon */
	font-weight:600;

}

/* Keep elements on horizontal line */
.header-content p.risk-line .status {
  display: inline-block; /*Keeps horizontal*/
  margin-right: 5px; /*Add space to keep horizontal*/
  margin-left: 5px; /*Add space to keep horizontal*/
}

.header-content p.risk-line img {
  display: inline-block; /*Keeps horizontal*/
  width:50px;/*size of wellness symbol*/
}


.tabs {
	display: flex;
	border-bottom: 2px solid #ddd;
	margin-bottom: 20px;
	margin-left:10px;	
}

.tab-button {
	padding: 10px 20px;
	border: none;
	background-color: #eee;
	color: #555;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	margin-right: 5px;
	transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
	background-color: #4CAF50; /* Green */
	color: #fff;
}

.tab-content {
	display: none;
	padding: 10px;
	/*border: 1px solid #ddd;*/
	border-radius: 0 0 8px 8px;
}

.tab-content.active {
	display: block;
}

button.green-button.add-improve-button.already-added {
    background-color: #808080 !important; /* Gray */
    cursor: not-allowed !important; /* Indicate it's disabled */
    opacity: 0.6 !important; /* Optional: Slightly faded look */
    color: white !important;
}

.remove-improve-button{

  width: 25px; /* Adjust as needed */
  height: 25px; /* Must be equal to the width */
  border-radius: 50%;
  background-color: red; /* Red */
  color: white;
  border: none;
  cursor: pointer;
  /* Flexbox for centering */
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  font-size: 22px; /* Adjust as needed for the minus sign */
  line-height: 1; /* Important for vertical alignment */
  /* Make it inline or inline-block */
  display: inline-flex; /* Use inline-flex to keep flexbox properties */
  margin-right: 5px; /* Add some spacing between buttons */
}

.circle-button:hover {
  background-color: #8B0000; /* Darker red */
}


.circle-button:hover {
  background-color: #3e8e41; /* Darker green */
}

.tab-button {
	margin-bottom: 2px;
	border-radius: 5px 5px 0 0; /* Keep only top rounding on stacked tabs */
}
	


.lti-menu {
  float: left; /* Floats the menu to the left */
  margin-bottom: 50px; /* Creates 50px space *below* the menu */
  position: relative; /* Creates a positioning context */
  width:300px;
  

  background-color: #4CAF50; /* Green 
  color: white; /* White text color (optional) */
  padding: 3px 5px; /* Add padding around the menu */
  border-radius: 10px; /* Round the corners */
  text-align: center; /* Centers the content if it's less wide than 100% */
}

/* Media query for small screens */
@media screen and (max-width: 600px) { /* Adjust max-width as needed */
  .lti-menu{
	width: 50% !important;	  
  }
}

/*LTA IMPROVE TAB - SCHEMA DIAGRAMS*/ 
/********improvement diagram has three!! boxed containers-why???? 
/*********master div=master div*********/
/********container_reference div. *********/
/*********scalable-div <--- to which a scalar of 0.6 is applied************/

.master_div {
	height: 450px;
	font-size:1em;
	display: flex;
	justify-content: left;
	align-items: left;
	border: 3px solid green;
	padding: 10px;
	width: 50%;
    margin: auto;
	
	
	background-color: #e8f5e9; /* Light, airy green background /
	border-radius: 8px; / Soft rounded corners /
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); / Subtle shadow for depth /
	font-family: sans-serif; / Modern font /
	color: #333; / Dark gray text for good contrast */
}

/* Media query for small screens */
@media screen and (max-width: 600px) { /* Adjust max-width as needed */
  .master_div{
	width: 90%;
	height: 400px;
	font-size:1em;	
  }
}


/* applied to the LTE Schema Diagram div so that schema diagram are scaled down so as not to overshoot the parent master_div */
.scalable-div {
  /* Add any default styles you want here */
}

/* Media query for small screens */
@media screen and (max-width: 600px) { /* Adjust max-width as needed */
  .scalable-div {
    transform: scale(0.85); /* Scales down to 50% on small screens */
    transform-origin: top left; /* Optional: Set the origin of the scaling */
    backface-visibility: hidden; /* Optional: Improve text rendering */
  }
}
	
.container_reference {
    position: relative;
    width: 1px;
    height: 600px;
}


.schema_info {
  /* Default styles for .schema_info */
  background-color: #e8f5e9;
  color:black;
  border: 3px solid green;
  padding: 10px;
  font-size:15px;
  width: 50%;
  margin: auto;
}

/* Media query for small screens */
@media screen and (max-width: 600px) { /* Adjust max-width as needed */
  .schema_info{
	width: 90%;	  
  }
}


.circle_risk {
	position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: crimson;
	color: white;
    text-align: center;
    border: 3px solid darkred;    
    display: flex;
	justify-content: center;
	align-items: center; 
}

.circle_main_program	{
	position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: green;
	color: white;
    text-align: center;
	border: 3px solid orange;    
    display: flex;
	justify-content: center;
	align-items: center; 
}

.circle_support_program	{
	position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: orange;
	color: black;
	border: 3px solid green;    
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center; 	
}

.arrow {
    position: absolute;   
    font-size: 30px;
}


.text {
    position: absolute;   
    font-size: 16px;
	width:500px;
}

.text-circle{
	color:white; 
	font-size:14px;	
}

.text-circle-black{
	color:black; 
	font-size:14px;	
}

.small-text-circle{
	color:black; 
	font-size:11px;	
}