
/*1 Pen boxes*/		
/*2 Alert2*/		
/*3 Speed Dial*/
/*4 Index page - div with each row with text on left and button on right*/
/*5 Click to hide */
/*6 Comment font (small blue text) */
/*7 see_list table th  */
/*8 links*/
/*9 placeholder font*/
/*10 Disable editing author1*/
/*11 Alert and Main  (lighter yellow text) */
/*13 Animation deleting cache*/
/*14 Platform tabs no underlinig/*/

html {font-size:14px!important}



/*1 Pen boxes*/		

	.penn_blue_box {
			background: #011F5B;
			background: linear-gradient(90deg,rgba(1, 31, 91, 1) 0%, rgba(40, 47, 133, 1) 54%, rgba(1, 31, 91, 1) 100%);
			color: #f9f9f9;
			font-weight: bold;
			padding-top:5px;
			padding-bottom:5px;
			padding-left:10px;
			color:white!important;
			margin-bottom:10px;
			text-shadow: 1px 1px 2px rgba(0,0,0,0.4); 
			
		}
		
		.penn_red_box {
			background: #990000;
			background: linear-gradient(90deg, rgba(153, 0, 0, 1) 0%, rgba(204, 0, 0, 1) 54%, rgba(153, 0, 0, 1) 100%);
			color: #f9f9f9;
			font-weight: bold;
			padding-top: 5px;
			padding-bottom: 5px;
			padding-left: 10px;
			color: white !important;
			margin-bottom: 10px;
			text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
		}
				
				
		.box_index_page {
			color: white !important;
			background-clip: padding-box;
			background: linear-gradient(90deg, rgba(1, 31, 91, 1) 0%, rgba(40, 47, 133, 1) 54%, rgba(1, 31, 91, 1) 100%);
			border: 10px solid transparent;
			text-align: justify;
			background-color: #011F5B !important;
			border-radius: 15px;
			font-size: medium;
			height: 100%;                /* 🔑 ensures full height within stretched column */
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			padding-right: 12px;  
			padding-left:12px;	/* Optional: for breathing room */
		}
		
		
		/*Lins inside blue box*/	
				.blue_box_link {
					  font-family: 'Inter', sans-serif;
					  font-size: 14px;
					  color: #00cc00;
					  text-decoration: none;
					  word-break: break-all;
					}

				.blue_box_link:hover {
					  color: #80ff80;
					  text-decoration: none;
					}

/*2 Alert2*/		
.alert2_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
}

.alert2_popup {
	position: fixed;
	top: 33%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	color: #333;
	padding: 20px 24px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	font-size: 14px;
	z-index: 10000;
	max-width: 420px;
	text-align: center;
	line-height: 1.4;
	display: none;
	opacity: 0;
	animation: alert2DropIn 0.3s ease-out forwards;
}

@keyframes alert2DropIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -100%);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes vibrate {
	0%   { transform: translate(-50%, -50%); }
	25%  { transform: translate(calc(-50% - 4px), calc(-50% - 4px)); }
	50%  { transform: translate(calc(-50% + 4px), calc(-50% + 4px)); }
	75%  { transform: translate(calc(-50% - 4px), calc(-50% + 4px)); }
	100% { transform: translate(-50%, -50%); }
}

.alert2_popup.shake {
	animation: shake 0.5s ease-in-out;
}

.alert2_popup.vibrate {
	animation: vibrate 0.3s ease-in-out;
}

	
	.btn_alert2	{
		width:80px;
		}
	





/*3 Speed Dial*/
		.btn_speed_dial {
			background-color:#026cb5!important;
			border-color:#004785!important;
			border-radius:17px;
			color:white!important;
			margin-top:5px!important;
			margin-right:5px;
			width:200px!important;
			font-size:14px!important;
			}
			
		.btn_speed_dial:hover {
			background-color:#06aafc!important;
			}
			
			
/*4 Index page - div with each row with text on left and button on right*/
	.index_button_row 
		{
		margin-top:10px
		}





/*5 Click to hide */

	.click_to_hide {
		  cursor: pointer;
		  padding: 8px;
		  position: relative;
		  margin: 5px 0;
		  border-left: 4px solid #007BFF; /* Blue border on the left */
		  padding-left: 12px; /* Add space between border and text */
		  transition: box-shadow 0.3s ease;
		  display:none;
		}

		.link_to_hide {
		  position: absolute;
		  top: 0px;
		  right: 10px;
		  cursor: pointer;
		  font-weight: bold;
		  color: #a00;
		  font-size:.85rem;
		  will-change: transform;

		}


		.click_to_hide:hover {
		  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
		}

		.click_to_show {
			  display: flex;
			  justify-content: center;
			  align-items: center;
			  min-height: 0px; /* optional: ensures a visible area even if empty */
			  padding: 10px 0;
			  width:100%;
			    text-align: center;

			}
			
			.click_to_show button {
				  margin:0px;
				}





/*6 Comment font (small blue text) */
	.font_comment {
		font-size:.8rem;
		color:#026cb5;
		margin-left:5px;
		font-weight:400!important;
		}



/*7 Table see list heders */

	.table_see_list thead th {
	background-color: #d0e9c6 !important;
	}

	.privateTable thead th {
	background-color: #d0e9c6 !important;
	}

/*8 links*/

	a {
		text-decoration: none!important;
		color:#337ab7;!important
	}

	a:hover {
	text-decoration: underline !important;
	color: #23527c !important;
}


/*9 placeholder style*/
::placeholder {
  color: #aaa!important;
  font-size:90%;
}

/*10 Disable editing author1*/

	
	
	input[readonly] {
		  background-color: #f5f5f5;
		  color: #555;
		  border: 1px dashed #ccc;
		  cursor: not-allowed;
		}


/*11 Create page*/

	.create_question{
		font-size:1.2rem;
		margin-bottom:-5px;
		margin-top:25px;
		line-height:1.1;
	}

	.create_field label {
		font-size: 1rem;
		 margin-top: 10px;
		margin-left: 20px;
		line-height:.8;
	}
	
	
	
	

	/* Tighten spacing between ONLY radio and checkbox options */
	.create_field input[type="radio"],
	.create_field input[type="checkbox"] {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	/* Reduce margin for their container rows */
	.create_field:has(input[type="radio"]),
	.create_field:has(input[type="checkbox"]) {
		margin-top: 2px !important;
		margin-bottom: 2px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}



	/* Tighten spacing inside labels */
		.create_field:has(input[type="radio"]) label,
		.create_field:has(input[type="checkbox"]) label {
			margin-top: 0 !important;
			margin-bottom: 0 !important;
			line-height: 1.1 !important;
		}


/*12 Alert and Main  (lighter yellow text) */

			.alert.main_text {
			font-size: 1.0rem;
			line-height: 1.6;
			background-color: #fffbea;
			border-left: 5px solid #ffc107;
			padding: 5px;
			padding-left:20px;
			padding-right:20px;
			
		}

		.alert.main_text h4 {
			font-size: 1.15rem;
			margin-bottom: 10px;
		}

		.alert.main_text ul {
			padding-left: 1.5rem;
		}



		.alert.main_text li b:first-child:contains("Independent")::before {
			content: "\f0c2"; /* cloud icon */
		}

		.alert.main_text li b:first-child:contains("Draft")::before {
			content: "\f044"; /* edit/pencil icon */
		}

		.alert.main_text li b:first-child:contains("Overlapping")::before {
			content: "\f0c1"; /* link icon */
		}



/*13 Animation deleting cache*/

	@keyframes pulse {
		0% { opacity: 0.5; }
		50% { opacity: 1; }
		100% { opacity: 0.5; }
	}
	
	
/*14 Platform tabs no underlinig/*/
	.wcl-tab-link:hover {
      text-decoration: none !important;
	}
	
/*16 update_name_spineer */
	.update_name_spinner {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin: 20px auto;
	}
	.update_name_spinner div {
		width: 10px;
		height: 10px;
		background-color: #0056b3;
		border-radius: 50%;
		animation: bounce 0.8s infinite alternate;
	}
	.update_name_spinner div:nth-child(2) {
		animation-delay: 0.2s;
	}
	.update_name_spinner div:nth-child(3) {
		animation-delay: 0.4s;
	}
	@keyframes bounce {
		from { transform: translateY(0); opacity: 0.6; }
		to { transform: translateY(-10px); opacity: 1; }
	}

	
	
/*OLDER*/		


body{
margin:0px;
padding:0px;
font-family: 'Inter', sans-serif;
}


input[type="text"] {
  autocomplete: off;
}


.div_msg {
    width: 800px;
    margin: 0 auto;
}

.col_info {
    background-clip: padding-box;
    border: 10px solid transparent;
    display:block;
}
		


.center{
width:900px !important;
margin:30px 0px 0px 0px;
}
.center1{
width:1000px !important;
margin:0px 0px 0px 0px;
}
.logo{
width: 30%;
}
.right{
margin-left:650px;
}
.align_center{
text-align:center;
}
.full-width{
width: 100% !important;
margin-bottom: 5% !important;
text-align: left !important;
}
.bottom_9{
margin-bottom:9%;
}
.textarea_h{
height: 75px !important;
}
/* admin part start */
.orange_head {
text-align:center;
color:#984806;
}
.center_admin_div{
margin: 0px auto;
width: 300px !important;
}
.margin_right_120{
margin: 0px 0px 0px 120px;
}
.logout{
float: right;
margin: 25px 25px 0px 0px;
color: #984806;
}
/* admin part end */
/** create page **/
.padding-lr-0
{
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.padding-lr-5
{
	padding-left: 5px !important;
	padding-right: 5px !important;
}
.margin-lr
{
	margin-left:0px;
	margin-right:0px;
}





.tooltip-wrap {
  position: relative;
}
.tooltip-wrap .tooltip-content {
  display: none;
  position: absolute;
  bottom: 5%;
  left: 5%;
  right: 5%;
  background-color: #fff;
  padding: .5em;
}
.tooltip-wrap:hover .tooltip-content {
  display: block;
}


ins{
    color: dodgerblue;
}
del{
    color: red;
}




.triangle-border {

    position: absolute;

    padding: 15px;

    margin: 1em 0 3em;

    border: 2px solid red;

    color: #333;

    background: #fff;

    -webkit-border-radius: 10px;

    -moz-border-radius: 10px;

    border-radius: 10px;

}

.triangle-border:before {

    content: "";

    position: absolute;

    bottom: -20px;

    left: 40px;

    border-width: 20px 20px 0;

    border-style: solid;

    border-color: red transparent;

    display: block;

    width: 0;

}

.triangle-border.right:before {

    top: 10px;

    bottom: auto;

    left: auto;

    right: -30px;

    border-width: 15px 0 15px 30px;

    border-color: transparent red;

}

.triangle-border:after {

    content: "";

    position: absolute;

    bottom: -13px;

    left: 47px;

    border-width: 13px 13px 0;

    border-style: solid;

    border-color: #fff transparent;

    display: block;

    width: 0;

}

.triangle-border.right:after {

    top: 14px;

    bottom: auto;

    left: auto;

    right: -25px;

    border-width: 11px 0 11px 25px;

    border-color: transparent #fff;

}

/*End pure-css-speech-bubbles*/





/*Bubble Styles*/

#aspre-bubble{

    width: 500px;

    right: 107%;

    top: -35%;

    z-index: 9;

}

#aspre-container-text{

    width: 57%;

    display: inline-block;

    margin-right: 5px;

}

.aspre-buttons-bubbles{

    width: 41%;

    display: inline-block;

    vertical-align: top;

}

.aspre-buttons-bubbles span.glyphicon{

    padding-right: 5px;

}

.aspre-buttons-bubbles .btn {

    margin-right: 5px;



}

#privateTable td, #publicTable td{

    position: relative;

}

#aspre-bubble form{

    margin-bottom: 0;

}

/*End bubble Styles*/



/*Load Icon*/

.glyphicon-refresh-animate {

    -animation: spin .7s infinite linear;

    -webkit-animation: spin2 .7s infinite linear;

}



@-webkit-keyframes spin2 {

    from { -webkit-transform: rotate(0deg);}

    to { -webkit-transform: rotate(360deg);}

}



@keyframes spin {

    from { transform: scale(1) rotate(0deg);}

    to { transform: scale(1) rotate(360deg);}

}

/*End Load Icon*/

.aspre-center-cancel .glyphicon-remove:before{
    margin-right: 5px;
}
.aspre-center-cancel{
    text-align: center;
}
#aspre-container-errors li{
    font-size: 13px;
}


ul {
    margin: 0; 
	padding-left: 20px;
	padding-right: 20px;

}


.index_column1{
	padding-right:20px;
	text-align:right;
	 vertical-align: text-top;
}

.index_column2{
	padding-left:10px;
	text-align:left;
	 vertical-align: text-top;
}

.col_info {
    background-clip: padding-box;
    border: 10px solid transparent;
    text-align:justify;
}

.btn_topbar {
	width:100px;
	text-align:center!important;
	margin-right:5px;
	margin-top:5px;
	padding-left:2px!important;
	padding-right:2px!important;
	font-size: 14px !important;
	
	
}

.btn_help {
	text-align:center!important;
	margin-right:10px;
	margin-top:5px;
	padding-left:2px!important;
	padding-right:2px!important;
	height:33px;	
}


.box_content {
	font-size:medium;
}

.btn_blue {
	background-color:#004785!important;
	border-color:#004785!important;
	color:white!important;
	font-size: 14px !important;
	}
	
.btn_blue_selected {
	background-color:#004785!important;
	border-color:#004785!important;
	color:white!important;
	pointer-events: none;

	}
	
.btn_blue:hover {
	background-color:#06aafc!important;
	}

.btn_red {
	background-color:#a90533!important;
	border-color:#a90533!important;
	color:white!important;
	font-size: 14px !important;
	}

.btn_red:hover {
	background-color: #ff6666!important;
	}


.btn_gray {
	background-color: #fff!important;
	border: 1px solid #d5d9d9;
  border-radius: 12px;
  box-sizing: border-box;
  color: #8e8a8a;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
	}

.btn_gray:hover { 
	background-color:#c8f3f6!important;
	}
	

.btn_red:hover {
	background-color: #ff6666!important;
	}

.td_pending_other_email { 
	padding-top:10px;
	}
.btn_cancel_email_request  { 
	margin-top:10px;
	}


.pointer:hover {cursor:pointer}

.hover:hover {cursor:pointer}

.pencil:hover {cursor:pointer}
.name_folder:hover {cursor:pointer}



.btn_folder_filter{
	border-radius:17px;
	margin-top:5px;
	margin-right:3px;
	min-width:150px;
	max-width:150px;
	font-size:12px;
	}
.btn_folder{
	background-color:#026cb5!important;
	border-color:#004785!important;
	color:white!important;
}
	
.btn_folder:hover {
	background-color:#06aafc!important;
	}

#show_all_folders{
	color:blue;
	text-decoration: underline;
	
	
}

#show_all_folders:hover {cursor:pointer;}


.btn_speed_dial {
	background-color:#026cb5!important;
	border-color:#004785!important;
	border-radius:17px;
	color:white!important;
	margin-top:5px;
	min-width:150px;
	}
	
.btn_speed_dial:hover {
	background-color:#06aafc!important;
	}


.btn-xs {
  padding: 0.2rem 0.1rem!important;
  font-size: 0.75rem!important;
  line-height: 1!important;
  vertical-align:middle!important;
  border-radius: 0.2rem!important;
}


           
.anon_link {
		color:#506FCC;
		font-size:70%;
		}
.anon_link:hover {cursos:pointer}
.show_anon_link:hover {cursor:pointer}

.pencil:hover {cursor:pointer}

.name_folder:hover {cursor:pointer}

.btn_pdf {font-size:x-small}

.btn_rb {font-size:x-small}

.box_id:hover {cursor:pointer}

.author_input {margin-bottom:1px}

.create_textarea {margin-left:20px;margin-right:20px}

 .ap_long_text {text-align:justify}


.main_text {line-height:140%; font-size:large; text-align:justify}

.aid_selected {background-color:#FFFFE0;vertical-align:middle!important;}
.aid_normal {vertical-align:middle!important;}
#msg_not_run_header:hover {cursor:pointer}

.rcorner1 {
  margin-top:5px;
  border-radius: 15px;
  padding: 10px;
}


.tr_researchbox:hover {cursor:pointer}

.green_header {
		background-color:#DCF8C6; 
		font-weight: bold; }
		
		
.clickable:hover {cursor:pointer}
		
.btn_rb:hover{background-color:#D0D0D0!important;}


.help_link {
    color: #007BFF; /* A modern blue color */
    cursor: pointer; /* Changes the cursor to a pointer when hovering */
    font-weight: 500; /* Slightly bold to give it a modern look */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}
.help_msg {
	 border: 2px solid #007BFF; /* Light orange color matching Bootstrap alert-warning */
    padding: 40px; /* Adds some padding inside the border */
	margin-left: 20px;
	border-radius: 4px; /* Optional: rounded corners */}

.help_link:hover {
    color: #0056b3; /* Darker shade of blue on hover */
    text-decoration: underline; /* Adds underline on hover */
}


.btn_make_pdf { 
	width:220px;
	}
	

.btn_make_pdf2 { 
	width:220px;
	}
	
.no_bold { font-weight:normal}

.hover:hover{cursor:pointer}


.link {
	color:#3f59c5
	}
	
.link:hover{
	cursor:pointer;
	text-decoration: underline; /* Underline text on hover */
	}


.div_header {
	padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
	width:700;
	font-size:20px;
}

/*36 Action row in headbar */
.wcl-action-row {
  display: flex;
  margin: 0 auto;
  max-width:1600px;
  display:flex; 
  align-items:center;
  justify-content:space-between; 
  gap:12px; 
  padding-top:7px;
  padding-bottom:7px;
  padding-left:7px;
  margin:0px auto 16px auto; 
}

.btn_headerbar {
  width:120px!important;
}

/* Prevent blue buttons from being underlined on hover */
.btn_blue:hover {
  text-decoration: none !important;
}

* {
    font-family: 'Inter', sans-serif;
}

/* title2() css for popup itself */
.div_title2_popup {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: .8rem;
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.has_title2{
  cursor: help;
}
	


