body {
	margin: 0px;
	padding: 0px;
	background-color: white;
}

.header {
  display: flex;
  justify-content: center;   /* Center the columns horizontally */
  align-items: stretch;      /* Make all columns the same height */
  width: 100%;               /* Full page width */
  box-sizing: border-box;
  padding: 0px; 
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  background-color: black;
	
}

form{
	margin:0px;
	padding:0px;
}


p{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	
}

H1{
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	text-transform:uppercase;
	font-weight:bold;
	color: black;	
	margin:0px;
	padding:2px;
}

.loggedin{
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	color: #5650a4;
}

.loggedin:hover{
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	color: red;
}


.holder {
  display: flex;
  justify-content: center;   /* Center the columns horizontally */
  align-items: stretch;      /* Make all columns the same height */
  width: 100%;               /* Full page width */
  box-sizing: border-box;
  padding: 10px;             /* Optional padding */
}

.col1, .col2, .col3 {
  /*border: 2px solid black;    Black borders */
  box-sizing: border-box;    /* Includes borders in width calculations */
  margin: 0 10px;            /* Space between columns */
}

.col1, .col3 {
  width: 15%;
}

.col2 {
  width: 50%;
  padding-left:20px;
  padding-right:20px;
}

.flex-image {
  width: 100%;
  height: auto;
  display: block;  /* Removes inline gaps */
}


.col1b, .col2b, .col3b {
  display: flex;
  box-sizing: border-box;    /* Includes borders in width calculations */
  margin: 0 10px;            /* Space between columns */
  align-items: center;

}

.col1b, .col3b {
  width: 15%;
}

.col2b {
  width: 50%;
  gap: 40px;
  justify-content: center;
}

.flex-image {
  width: 100%;
  height: auto;
  display: block;  /* Removes inline gaps */
  border: none;
}

/* SEARCH AREA--------------------------------------------------------------- */


.search-form {
  display: flex;
  align-items: center;
  width: 100%;                  /* Adjusts to available space */
  max-width: 500px;             /* Optional max width */
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;       /* Flat style, no 3D */
  box-sizing: border-box;
  margin-top: 3px;
}

.search-form input[type="text"] {
  flex: 1;                      /* Take up available space */
  border: none;
  padding: 0 10px;
  font-size: 16px;
  height: 100%;
  outline: none;                /* Remove blue outline */
  box-sizing: border-box;
}

.search-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
}

.search-form button:hover {
  background-color: #f0f0f0;    /* Subtle hover effect */
}

.search-form svg {
  width: 20px;
  height: 20px;
}

/* MENU AREA--------------------------------------------------------------- */

.menu {
  display: flex;
  justify-content: center;
  gap: 40px;        /* Space between menu items */
  padding: 20px;

}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;     /* Default color */
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.menu-item:hover {
  color: #5650a4;       /* Hover color */
}

.menu-icon {
  width: 20px;      /* Icon size */
  height: 20px;
  margin-bottom: 2px;
}

.menu-text {

  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  text-transform:uppercase;
}



.menu-item2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;     /* Default color */
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.menu-item2:hover {
  color: #5650a4;       /* Hover color */
}

.menu-icon2 {
  width: 20px;      /* Icon size */
  height: 20px;
  margin-bottom: 2px;
}

.menu-text2 {

  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  text-transform:uppercase;
}



.menu-item3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;     /* Default color */
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.menu-item3:hover {
  color: #5650a4;       /* Hover color */
}

.menu-icon3 {
  width: 20px;      /* Icon size */
  height: 20px;
  margin-bottom: 2px;
}

.menu-text3 {

  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  text-transform:uppercase;
}



.badge {
  position: absolute;
  top: -2px;
  right: -19px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 15%;
  padding: 2px 3px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Rollout--------------------------------------------------------------- */


#slidingDiv {
  position: fixed;       /* Stays over everything */
  top: 47px;
  left: 0;
  width: 25%;
  height: 0;             /* Start hidden */
  /*overflow: hidden;*/
  overflow-y: auto;
  overflow-x:hidden;
  background: white;
  color: white;
  z-index: 9999;         /* Ensure it’s on top */
  transition: height 0.4s ease;  /* Smooth slide down */
  padding: 0 20px;
  border: 1px solid black;
  border-radius: 0 0 0px 13px;
  visibility:hidden;
  scrollbar-width: thin;


}

#slidingDiv.open {
  height: 200px;         /* Slide to this height */
  padding: 20px;         /* Add padding when open */
}


#slidingDiv2 {
  position: fixed;       /* Stays over everything */
  top: 47px;
  left: 0;
  width: 20%;
  height: 0;             /* Start hidden */
  /*overflow: hidden;*/
  overflow-y: auto;
  overflow-x:hidden;
  background: white;
  color: white;
  z-index: 9998;         /* Ensure it’s on top */
  transition: height 0.4s ease;  /* Smooth slide down */
  padding: 0 20px;
  border: 1px solid black;
  border-radius: 0 0 0px 13px;
  visibility:hidden;
  scrollbar-width: thin;

}

#slidingDiv2.open {
  height: 200px;         /* Slide to this height */
  padding: 20px;         /* Add padding when open */
}

/* Notifications Section--------------------------------------------------------------- */

.notidisplay1{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;

	background-repeat: no-repeat;
	background-size: 50px 50px;
	margin-bottom:15px;
}

.dropuserimage {
	width:50px;
	height:50px;
	border-radius:6px;
	float:left;
	border: 1px solid black;
}

.notidisplayexcept{
	display:block;
	width:100%;
	height:55px;
	color:white;
	margin-right:0px;
	padding-right:0px;
	padding:2px;
	background-image: url("https://gorehallow.com/images/knife.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
	margin-bottom:15px;
	border-bottom: 1px dashed black;
}

.notidisplay2{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;
	background-image: url("https://gorehallow.com/images/skull.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
}

.notidisplay3{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;
	background-image: url("https://gorehallow.com/images/lit.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
}

.notidisplay4{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;
	background-image: url("https://gorehallow.com/images/film.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
}

.notidisplay5{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;
	background-image: url("https://gorehallow.com/images/music.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
}

.notidisplay6{
	display:block;
	width:340px;
	color:black;
	padding:2px;
	border-radius:6px;
	background-image: url("https://gorehallow.com/images/book.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
}


.n_head{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	text-transform:uppercase;
	font-weight:bold;
	padding-bottom:0px;
	margin-bottom:0px;
	margin-top:0px;
	padding-top:0px;
	padding-left:60px;
	color: #5650a4;
}

.n_body{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	padding-top:0px;
	padding-left:60px;
	margin-top:0px;
	padding-bottom:0px;
	margin-bottom:0px;
}

.n_date{
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	padding-top:0px;
	padding-left:60px;
	margin-top:0px;
	padding-bottom:5px;
}

.menuhold{
		padding-bottom:0px;
		margin-bottom:0px;
}

.n_link{
		text-decoration:none;
		color: #5650a4;
}


/* Login Classes--------------------------------------------------------------- */

.login_title{
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	text-transform:uppercase;
	font-weight:bold;
	color: white;	
	margin:0px;
	padding:2px;
}

.login_text{
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	color: white;	
	margin:0px;
	padding:5px;
}

.login_text_white{
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight:bold;
	color: black;	
	margin:0px;
	padding:5px;
}

.login_top{
	width:100%;
	margin:0px;
	text-align:center;
	border:1px solid black;
	border-radius:12px 12px 0px 0px;
	background-color:black;
}

.login_middle{
	
	width:100%;
	padding:0px;
	margin:0px;
	text-align:center;
	border:1px solid black;
	
}

.login_bottom{
	width:100%;
	padding:0px;
	margin:0px;
	text-align:center;
	border:1px solid black;
	border-radius:0px 0px 12px 12px;
	background-color:black;	
}

.forminput{
	width:90%;
	height:30px;
	border: 1px solid gray;
	border-radius: 12px;
	padding-bottom:4px;
	margin-bottom:5px;
	
}

.loginblack{
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	text-decoration:none;
	color: #a7a1f7; 
}

.subform{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight:bold;
	width:92%;
	height:30px;
	border-radius: 12px;
	padding:4px;
	margin-bottom:5px;
	border:none;
	background-color:#5650a4;
	text-transform:uppercase;
	color:white;
	margin-top:10px;
}

/* Signup Classes--------------------------------------------------------------- */

.signup_pic{
	border:1px solid black;
	border-radius:12px;
	float:left;
	width:210px;
	height:210px;
	margin-right:20px;
}

.container_signup {
  display: grid;
  grid-template-columns: .9fr 1.5fr 1.5fr; /* First column is half the size of others */
  gap: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  align-items: center; 
}

.container_signup > div {
  box-sizing: border-box;
}

.signup_textbox{
	width:100%;
	height:20px;
	border: 1px solid gray;
	border-radius: 12px;
	padding:0px;
	margin:0px;
	padding-left:10px;
}

.bdate{
	width:96%;
	height:20px;
	border: 1px solid gray;
	border-radius: 12px;
	padding:0px;
	margin:0px;
	padding-left:10px;
	padding-right:10px;
}

.error{
	margin:0px;
	padding:0px;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight:italic;	
	color:red;
	padding-left:20px;
}

.container_sex {
  display: flex;
}

.left_sex {
  width: 230px;

}

.right_sex {
  flex: 1; /* take up remaining space */

}

.break {
  clear: both; /* or left / right if only one side is floated */
}

.makefont{
	padding:0px;
	margin:0px;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
    display: inline;	
}

hr {
  border: none;
  border-top: 1px dotted black; /* You can change the color and thickness */
  margin: 1em 0; /* optional spacing */
}

.biofield{
	width:60%;
	height:116px;
	border: 1px solid gray;
	border-radius: 12px 0 0 12px;
	padding:0px;
	margin:0px;
	padding-left:10px;
	padding-right:10px;	
}

.subform2 {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight:bold;
	width:92%;
	height:30px;
	border-radius: 12px;
	padding:4px;
	margin-bottom:5px;
	border:none;

	text-transform:uppercase;

	margin-top:10px;
}



.subform2:enabled {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight:bold;
	width:92%;
	height:30px;
	border-radius: 12px;
	padding:4px;
	margin-bottom:5px;
	border:none;
	background-color:#5650a4;
	text-transform:uppercase;
	color:white;
	margin-top:10px;
}

.subform2:disabled {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight:bold;
	width:92%;
	height:30px;
	border-radius: 12px;
	padding:4px;
	margin-bottom:5px;
	border:none;
	background-color:gray;
	text-transform:uppercase;
	color:white;
	margin-top:10px;
}

.confirmations{
	width:60%;
	height:200px;
	border: 1px solid gray;
	border-radius: 12px 0 0 12px;
	padding:0px;
	margin:0px;
	padding-left:10px;
	padding-right:10px;	
}

.listtext{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	list-style-type: none;
	padding-left: 0;
}

.signup_pic2{
	border:1px solid black;
	border-radius:12px;
	float:left;
	width:70px;
	height:70px;
	margin-right:20px;	
}

.break2 {
  clear: both; /* or left / right if only one side is floated */
  line-height: 1;
}

.subform3:enabled {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight:bold;
	width:62%;
	height:30px;
	border-radius: 12px;
	padding:4px;
	margin-bottom:5px;
	border:none;
	background-color:#5650a4;
	text-transform:uppercase;
	color:white;
	margin-top:10px;
}


/* Messages Section--------------------------------------------------------------- */

.messageprofile {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	text-transform:uppercase;
	font-weight:bold;
	color: #5650a4;	
	margin:0px;
	padding:2px;
	text-decoration:none;
}

.messagereglink {
	text-decoration:none;
	color: #5650a4;		
}

.m_container {
  display: flex;
  width: 100%;
  border: 1px solid black;
  border-radius:6px;
  background-color:#5650a4;
  padding:5px;
  margin-bottom:7px;
}

.m_container2 {
  display: flex;
  width: 100%;
  border: 1px solid black;
  border-radius:6px;
  background-color:#CCC;
  padding:5px;
  margin-bottom:7px;
}

.m_pic {
  border: 1px solid black;
  border-radius:6px;
  width:50px;
  height:50px;
}

.m_left {
  width: 60px;
  padding:5px;
  border-radius:6px;
}

.m_right {
  flex: 1; /* takes the remaining space */
  padding:5px;
  background-color: #eee; /* just to see it */
  border-radius:6px;
}

.m_topline {
	text-decoration:none;
	color: #5650a4;	
	font-size:10px;
	padding:0px;
	margin:0px;
	text-transform:uppercase;
}

.m_secondline {
	text-decoration:none;
	color: black;	
	font-size:10px;
	padding:0px;
	margin:0px;	
}

.m_message {
	color: black;	
	font-size:13px;	
	margin:0px;
	padding:0px;
	margin-top:3px;
}


.m_container3 {
  display: flex;
  width: 100%;
  border: 1px solid black;
  border-radius:6px;
  background-color:black;
  padding:7px;
  padding-bottom:3px;
  margin-bottom:7px;
}


.m_left3 {
  width: 60px;
  padding:0px;
  margin:0px;
  background-color:black;
}

.m_right3 {
  flex: 1; /* takes the remaining space */
  padding:0px;
  margin:0px;
  background-color: black; /* just to see it */

}

.m_textarea {
 width: 100%;
  height: 70px;
  box-sizing: border-box;
  /*border: none;           no border */
  outline: none;         /* removes focus outline */
  resize: none;          /* optional: prevent resizing */
  overflow-y: scroll;    /* always show vertical scrollbar */
  scrollbar-width: thin; /* Firefox: small scrollbar */
  margin:0px;
  padding:5px;
}

.sendmess{
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight:bold;
	width:100%;
	height:70px;
	border-radius: 0 6px 6px 0;
	padding:0px;
	border:none;
	background-color:#5650a4;
	text-transform:uppercase;
	color:white;
	padding:3px;
	margin:0px;
}

.sendmess:hover{
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight:bold;
	width:100%;
	height:70px;
	border-radius: 0 6px 6px 0;
	padding:0px;
	border:none;
	background-color:orange;
	text-transform:uppercase;
	color:black;
	padding:3px;
	margin:0px;
}

.resultspan {
	color:white;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;	
}


/* Movies Section--------------------------------------------------------------- */

.copy-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: sans-serif;
}
.copy-link {
  text-decoration: none;
  color: #5650a4;
}
.copy-icon {
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.fmenu-row {
  display: flex;
  width: 100%;
}

.fmenu-col {
  flex: 1;              /* each column takes up equal space (1/3) */
  padding: 5px;         /* small spacing between buttons */
}

.fmenu-col input[type="button"] {
  width: 100%;          /* button fills entire column width */
  height: 60px;         /* adjust height if you like */
  font-size: 16px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight:bold;
  border-radius: 6px;
  padding:0px;
  border:none;
  background-color:#5650a4;
  text-transform:uppercase;
  color:white;
}

.fmenu-col2 {
  flex: 1;              /* each column takes up equal space (1/3) */
  padding: 5px;         /* small spacing between buttons */
}

.fmenu-col2 input[type="button"] {
  width: 100%;          /* button fills entire column width */
  height: 60px;         /* adjust height if you like */
  font-size: 16px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight:bold;
  border-radius: 6px;
  padding:0px;
  border:none;
  background-color:#CCC;
  text-transform:uppercase;
  color:black;
}

.search-form2 {
  display: flex;
  align-items: center;
  width: 100%;                  /* Adjusts to available space */
  /*max-width: 500px;              Optional max width */
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;       /* Flat style, no 3D */
  box-sizing: border-box;
  margin-top: 3px;
}

.search-form2 input[type="text"] {
  flex: 1;                      /* Take up available space */
  border: none;
  padding: 0 10px;
  font-size: 16px;
  height: 100%;
  outline: none;                /* Remove blue outline */
  box-sizing: border-box;
}

.search-form2 button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
}

.search-form2 button:hover {
  background-color: #f0f0f0;    /* Subtle hover effect */
}

.search-form2 svg {
  width: 20px;
  height: 20px;
}

.mogrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 10px; /* space between items */
}

.mogrid-item {
  background: #e0e0e0;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius:6px;
  padding-bottom:6px;
}

.mogrid img {
  width: 100%;
  border-radius:6px;
  height:70%;
}


.mogrid-item2 {
  background: #5650a4;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius:6px;
  padding-bottom:6px;
}

.mitem {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  padding:0px;
  margin:0px;
}

.mitem2 {
    display: block;       /* make it act like a <p> */
    margin: 1em 0;        /* same spacing as <p> */
    line-height: 1.5;     /* match paragraph line spacing */
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  padding:0px;
  margin:0px;
  color:#5650a4;
  margin-top:6px;
}

.mitem3 {
    display: block;       /* make it act like a <p> */
    margin: 1em 0;        /* same spacing as <p> */
    line-height: 1.5;     /* match paragraph line spacing */
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  padding:0px;
  margin:0px;
  color:white;
  margin-top:6px;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;	
  font-weight:bold;
  white-space: nowrap;        /* Prevent line breaks */
  overflow: hidden;           /* Hide overflowed text */
  text-overflow: ellipsis;    /* Show "…" at the end if cut off */
  width: 150px;
  text-align:center;
  margin: 0 auto;
  padding:0px;
  text-transform:uppercase;
}

.movie-bottom {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight:bold;
  border-radius: 6px;
  border:none;
  background-color:#5650a4;
  text-transform:uppercase;
  color:white; 
  margin-bottom:10px;
  margin-top:10px;
}


/* Upload User Images Section--------------------------------------------------------------- */

.upload-form {
	background: #fff;
	padding: 0px;
	border-radius: 12px;
	margin:0px;
	width: 100%;
}


.upload-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: black;
	font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.upload-form input[type="file"] {
	display: block;
	width: 100%;
	padding: 6px;
	margin:0px;
	margin-bottom: 20px;
	border-radius: 6px;
	border: 1px solid #ccc;
	box-sizing: border-box; /* include padding and border in the width */
}

.upload-form textarea {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	resize: vertical;
	min-height: 80px;
	margin:0px;
	margin-bottom: 20px;
	font-size: 14px;
	box-sizing: border-box; /* include padding and border in the width */
}

.upload-form input[type="submit"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight:bold;
  border-radius: 6px;
  border:none;
  background-color:#5650a4;
  text-transform:uppercase;
  color:white; 
  margin:0px;
  margin-bottom:10px;
  margin-top:10px;
}

.upload-form input[type="submit"]:hover {
	
}

/* Optional: show selected image preview */
.preview {
	margin-bottom: 20px;

}

.preview img {
	max-width: 100%;
	max-height: 250px;
	border-radius: 8px;
	border: 1px solid #ccc;
}

.spinnerdiv {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
	text-transform:uppercase;
}

.gallerythumb {
	width:100%;
	border-radius:6px;
	border:1px solid black;	
}


/* Profile Section--------------------------------------------------------------- */

.profcontainer {
  display: flex;
  width: 100%;
  padding:0px;
  margin:0xp;
}

.profcolumn-1 {
  flex: 0 0 30%;
  padding: 0px;
  margin:0px;
}

.profcolumn-2 {
  flex: 0 0 50%;
  padding: 0px;

  margin:0px;
}

.profcolumn-3 {
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  flex: 0 0 20%;
  padding: 0 0 0 10px;
  margin: 0;
  height: auto; /* make sure it has a defined height */
  gap: 7px;
}

/* Image that scales to the full width of the first column */
.profcolumn-image {
  width: 100%;
  height: auto;
  display: block;
  padding:0px;
  margin:0px;
  border:1px solid black;
  border-radius:6px;
}


.profbutton{
  flex: 1; /* fill equal height */
  display: flex; /* for centering text */
  align-items: center;
  justify-content: center;

  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: #5650a4;
  text-transform: uppercase;
  color: white;
  text-decoration: none;

  padding: 0;        /* remove padding, use flex centering */
  margin: 0;         /* remove margin */
  margin-bottom: 0;  /* spacing handled by flex gap if needed */
  height: auto;      /* let flex control height */

}

.profbutton:hover{
  flex: 1; /* fill equal height */
  display: flex; /* for centering text */
  align-items: center;
  justify-content: center;

  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: orange;
  text-transform: uppercase;
  color: black;
  text-decoration: none;

  padding: 0;        /* remove padding, use flex centering */
  margin: 0;         /* remove margin */
  margin-bottom: 0;  /* spacing handled by flex gap if needed */
  height: auto;      /* let flex control height */
}


.profbutton2{
  flex: 1; /* fill equal height */
  display: flex; /* for centering text */
  align-items: center;
  justify-content: center;

  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: #362ea3;
  text-transform: uppercase;
  color: white;
  text-decoration: none;

  padding: 0;        /* remove padding, use flex centering */
  margin: 0;         /* remove margin */
  margin-bottom: 0;  /* spacing handled by flex gap if needed */
  height: auto;      /* let flex control height */

}

.profbutton2:hover{
  flex: 1; /* fill equal height */
  display: flex; /* for centering text */
  align-items: center;
  justify-content: center;

  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: orange;
  text-transform: uppercase;
  color: black;
  text-decoration: none;

  padding: 0;        /* remove padding, use flex centering */
  margin: 0;         /* remove margin */
  margin-bottom: 0;  /* spacing handled by flex gap if needed */
  height: auto;      /* let flex control height */
}

.stretchhr {
 width:100%;
 margin:0px;
 padding:0px;
}

.leftright{
 padding:0px;
 margin:0px;
 padding-left:20px;
 padding-right:15px;
	
}


/* FUNCTION SUPPORT--------------------------------------------------------------- */

.genericholder {
  display: flex;
  flex-wrap: wrap;        /* wrap to next line when out of room */
  gap: 10px;              /* space between boxes (row & column) */
  align-items: center;    /* vertical alignment of boxes */
  width: 100%;            /* or whatever container width you want */
  box-sizing: border-box;
  text-align:center;
}

/* Boxes: size to content, don't stretch */
.genericitem {
  flex: 0 0 auto;         /* don't grow or shrink to fill — size to content */
  display: inline-flex;   /* content inside aligns nicely */
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: #f3f4f6;
  border: 1px solid #e1e5ea;
  white-space: nowrap;    /* keep the label on one line inside the box */
  font-size: 14px;
}

.genericimage {
  border: 1px solid black;
  border-radius:6px; 
}

.generictext {
	clear: both;
	text-align:center;
	margin:0px;
	padding:0px;
	white-space: nowrap;      /* keep text on one line */
    overflow: hidden;         /* hide overflowing text */
    text-overflow: ellipsis;  /* show ... at the end */
	
}

.gen-wrap {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: center; /* or center if you want centered text */

}

.genericlink {
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	color:#5650a4;
}

.genericlink:hover {
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	color:red;
}

.generictext2 {
	margin-bottom:0px;
	padding-bottom:0px;
}

.genericlink2 {
	text-decoration:none;
	color:#5650a4;
	margin-top:0px;
	padding-top:0px;
	font-size:10px;
}

.genericlink2:hover {
	text-decoration:none;
	color:red;
	margin-top:0px;
	padding-top:0px;
	font-size:10px;	
}

.overhide {
  align-items: center;    /* vertical alignment of boxes */
  width: 100%;            /* or whatever container width you want */
  box-sizing: border-box;
  margin-top:15px;
  overflow: hidden;
}


/* LIGHTBOX--------------------------------------------------------------- */

/* lightbox.css */
:root {
  --overlay: 0 0 0 / 0.6; /* black w/ opacity */
  --radius: 16px;
}


/* --- Lightbox core --- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease;
}
.lightbox:target { opacity: 1; pointer-events: auto; }

/* Clickable backdrop that closes the lightbox */
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(var(--overlay)); }

/* The modal/card */
.lightbox__content {
  position: relative; z-index: 1;
  width: min(92vw, 980px);
  max-height: min(88vh, 900px);
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  overflow: hidden;
  transform: scale(.96) translateY(6px);
  opacity: 0;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .34s ease;
}
.lightbox:target .lightbox__content { transform: scale(1) translateY(0); opacity: 1; }

/* Media area */
.lightbox__media { display: block; background: #000; text-align:center; }
.lightbox__media img { display: block; width: 100%; height: auto; max-height: 70vh; object-fit: contain;}

/* Caption */
.lightbox__caption { padding: 12px 16px 16px; background: #fff; text-align:center; }
.lightbox__caption h3 { margin: 0 0 6px; font-size: 1.05rem; text-align:center; }
.lightbox__caption p { margin: 0; color: #444;  text-align:center;}

/* Close (X) button */
.lightbox__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.9);
  text-decoration: none; color: #111; font-weight: 700; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: transform .15s ease, background .15s ease;
}
.lightbox__close:hover { transform: scale(1.05); background: #fff; }
.lightbox__close:focus { outline: 2px solid #000; outline-offset: 2px; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__content, .thumb img { transition: none; }
  .lightbox__content { transform: none; }
}




