body {
font-family: Arial, sans-serif;
background: #f7f7f7;
color: #333;
font-family: 'Roboto', Arial, sans-serif; 
margin: 0px;
}




.resource-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	padding: 20px;
}

.resource-item {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 10px 12px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
	cursor: pointer;
}

.resource-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resource-thumb {
	flex-shrink: 0;
	margin-right: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
}

.resource-icon {
	font-size: 22px;
	color: #fff;
}

.resource-info {
	display: flex;
	flex-direction: column;
}

.resource-type {
	font-size: 11px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.resource-title {
	font-size: 13px;
	font-weight: 600;
	color: #222;
	margin-top: 3px;
	line-height: 1.4em;
}

/* ===== Type Styles ===== */
.type-url .resource-thumb {
	background: #3b82f6;
	/* Blue */
}

.type-pdf .resource-thumb {
	background: #e63946;
	/* Red */
}

.type-word .resource-thumb {
	background: #2b579a;
	/* Word Blue */
}

.type-assignment .resource-thumb {
	background: #16a34a;
	/* Green */
}

.type-quiz .resource-thumb {
	background: #f59e0b;
	/* Amber */
}

.type-youtube .resource-thumb {
	background: #ff0000;
	/* YouTube Red */
}

/* Optional: small glow effect */
.resource-item:hover .resource-thumb {
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

 .stp-radio-group {
 	display: flex;
 	gap: 20px;
 	font-family: Arial, sans-serif;
 	font-size: 14px;
 }

 /* Hide the default radio */
 .stp-radio input[type="radio"] {
 	display: none;
 }

 /* Custom radio appearance */
 .stp-radio-custom {
 	display: inline-block;
 	width: 14px;
 	height: 14px;
 	border: 2px solid #888;
 	border-radius: 50%;
 	margin-right: 8px;
 	vertical-align: top;
 	transition: all 0.2s ease;
 	position: relative;
 }

 /* Inner dot for checked state */
 .stp-radio-custom::after {
 	content: "";
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	width: 10px;
 	height: 10px;
 	background-color: #4CAF50;
 	border-radius: 50%;
 	transform: translate(-50%, -50%) scale(0);
 	transition: transform 0.2s ease;
 }

 /* Checked state */
 .stp-radio input[type="radio"]:checked+.stp-radio-custom::after {
 	transform: translate(-50%, -50%) scale(1);
 }

 /* Hover effect */
 .stp-radio:hover .stp-radio-custom {
 	border-color: #4CAF50;
 	cursor: pointer;
 }


	    /* + Create Button */
	    .create-btn {
	    	background-color: #007bff;
	    	color: #fff;
	    	padding: 12px 20px;
	    	font-size: 18px;
	    	border: none;
	    	border-radius: 6px;
	    	cursor: pointer;
	    }
	
	    /* Modal Content */
	    .create-modal-content {
	    	background: #fff;
	    	padding: 30px 20px;
	    	border-radius: 10px;
	    	width: 500px;
	    	max-width: 90%;
	    	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	    }
	
	    /* Grid layout for cards */
	    .create-grid {
	    	display: grid;
	    	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	    	gap: 15px;
	    	margin-top: 20px;
	    }
	
	    /* Individual card */
	    .create-card {
	    	background: #f9f9f9;
	    	border-radius: 8px;
	    	padding: 15px;
	    	display: flex;
	    	flex-direction: column;
	    	align-items: flex-start;
	    	cursor: pointer;
	    	transition: transform 0.2s, box-shadow 0.2s;
	    }
	
	    .create-card:hover {
	    	transform: translateY(-3px);
	    	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	    }
	
	    /* Icon and title */
	    .create-card .icon {
	    	font-size: 28px;
	    	margin-bottom: 8px;
	    }
	
	    .create-card .text {
	    	font-weight: bold;
	    	font-size: 16px;
	    	margin-bottom: 4px;
	    }
	
	    /* Examples */
	    .create-card .examples {
	    	font-size: 12px;
	    	color: #666;
	    }
	
	    /* Close Button */
	    .close-btn {
	    	margin-top: 25px;
	    	padding: 10px 18px;
	    	border: none;
	    	background: #ccc;
	    	border-radius: 6px;
	    	cursor: pointer;
	    	float: right;
	    }
	
	    /* Responsive adjustments */
	    @media (max-width: 450px) {
	    	.create-modal-content {
	    		width: 90%;
	    		padding: 20px;
	    	}
	
	    	.create-grid {
	    		grid-template-columns: 1fr 1fr;
	    		gap: 10px;
	    	}
	    }
	
	    .create-card_text {
	    	text-align: center;
	    	font-size: 11px;
	    	color: #4a4a4a;
	    	margin: 4px 0px 0px 0px;
	    }

		
.add-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s;
  margin: 0px 0px 12px 0px;
}
.add-chip:hover {
  background: #e9e9e9;
  transform: scale(1.03);
}
.add-chip i {
  color: #4285f4; /* Google blue */
}


.preloader_container {
	width: 100%;
	margin: 50px 0px 10px 0px;
	height: 25px;
	border-radius: 10px;
	background-color: #f0f0f0;
	overflow: hidden;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	display: none;
	/* Always hidden by default */
}

.preloader_bar_inner {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, #c4daec, #2598f3);
	text-align: center;
	color: white;
	font-weight: bold;
	line-height: 25px;
	transition: width 0.2s ease;
	border-radius: 10px;
}


.transactions_summary_holder {
padding: 3px 10px 11px 10px;
}

.transactions_container {
	display: block;
	font-size: 14px;
}

.transactions_summary_col1 {
	display: inline-block;
	width: 135px;
}

.transactions_summary_col2 {
	display: inline-block;
	text-align: right;
	width: 93px;
	font-size: 14px;
}


.container { 
  max-width: 750px; 
  background: #fff;
border-radius: 10px; 
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 margin: 4px auto;
  padding: 6px;
  }


h1, h2 { 
text-align: left;
  margin: 24px 0px 18px 0px !important;	

letter-spacing: 4.3px;
	 }




.links { margin: 20px 0; }
a.button {
display: block; margin: 10px 0; padding: 12px; text-align: center;
background: #0077cc; color: #fff; text-decoration: none; border-radius: 8px;
font-size: 16px;
}
a.button:hover { background: #005fa3; }
.instructions, .caucus-instructions, .chat-box, .downloads, .timer {
background: #f0f4f8; padding: 15px; border-radius: 8px; margin-bottom: 20px;
}

.locked-message {
display: flex;
align-items: center;
gap: 10px;
background: #f8f9fa;
border: 1px solid #ddd;
padding: 12px 16px;
border-radius: 8px;
font-size: 14px;
color: #333;
}


.instruction_div {
font-size: 10px;
margin: 12px 0px 12px 0px;
color: #626161;
}

.instruction_heading {
font-weight: 600;
font-size: 14px;
}

.instruction_text {
font-size: 12px;
}


.locked-message i {
color: #c0392b; /* red lock */
font-size: 18px;
}


.edit_ellipsis {
	position: absolute;
	right: 10px;
	font-size: 21px;
	color: #007bff;
}



.modal_headings_inputs {
	color: #959595 !important;
	letter-spacing: 4.3px;
	font-size: 16px;
	text-align: left;
	margin: 10px 0px 8px 9px;
	position: relative;
}


.modal_headings {
margin: 40px 0px 20px 0px;
font-size: 23px;
color: #959595 !important;
text-align: center;
}


/* Container for all tabs */
.TopAttendeeTabs {
	overflow-x: auto;
	/* Enables horizontal scrolling */
	-webkit-overflow-scrolling: touch;
	/* Smooth scrolling on iOS */
	white-space: nowrap;
	/* Prevent line breaks */
}

/* Make labels inline/flex so they stay in a row */
.TopAttendeeTabs label.tab {
	display: inline-block;
	/* Or flex if you prefer */
	margin: 0 2px;
	/* Optional spacing */
	white-space: normal;
	/* Allows label text to wrap if needed */
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 4px;
	background: #f1f1f1;
	transition: background 0.2s;
}

.TopAttendeeTabs label.tab:hover {
	background: #e2e2e2;
}

/* Optional: hide scrollbar but still scrollable */
.TopAttendeeTabs::-webkit-scrollbar {
	display: none;
}

#tabs {
display: flex;
border-bottom: 2px solid #ddd;
margin-bottom: 10px;
font-size: 12px;
}


.tab {
	padding: 10px 14px;
	cursor: pointer;
	background: #e3e3e3;
	margin-right: 5px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	transition: background 0.3s;
	border: 1px solid #e1e1e1;
}


.tab:hover {
background: #eaeaea;
}

.tab.active {
background: white;
border: 2px solid #ddd;
border-bottom: 2px solid white;
font-weight: bold;
}


.billing-options {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 10px 0;
}

.billing-options input[type="radio"] {
display: none;
}

.billing-options label {
padding: 8px 14px;
border-radius: 6px;
cursor: pointer;
border: 1px solid #ccc;
background-color: #fff;
transition: all 0.2s ease;
font-size: 14px;
border: 1px solid #007bff;
}

.billing-options input[type="radio"]:checked + label {
background-color: #007BFF;
color: white;
border-color: #007BFF;
}

.billing-options label:hover {
background-color: #e0e0e0;
}


.image-container {
width: 100%;
height: 210px;
overflow: hidden;
border: 1px solid #ccc;
border-radius: 6px;
}

.image-container img {
width: 100%;
height: 100%;
object-fit: cover; /* makes the image cover the div, cropping if needed */
object-position: center; /* center the image */
}



/* Container */
.dashboard-actions {
display: flex;
gap: 3px;
flex-wrap: wrap;
}

.dashboard-actions .action-item {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
font-size: 11px;
border-radius: 6px;
background: #fbfbfb;
cursor: pointer;
transition: background 0.2s;
user-select: none;
color: #828282;
}

.dashboard-actions .action-item:hover {
background: #e0e0e0;
}

/* Icon inside div */
.dashboard-actions .action-item .icon {
font-size: 16px;
}

.days {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px;
margin-bottom: 24px;
}

.day {
border-radius: 12px;
padding: 16px;
color: #fff;
position: relative;
display: inline-block;
/* flex-direction: column; */
/* gap: 8px; */
transition: transform 0.2s;
align-items: center;
justify-content: center;
font-size: 11px;
}


.day-date {
font-size: 0.8rem;
font-weight: bold;
}


.day {
color: #fff;
}



.day.today {
background: #ff7043;
}
.upcoming {
background: #42a5f5;
}

.day-info {
font-size: 0.9rem;
}

.edit_icons_pen {
color: #007BFF;
font-size: 16px;
border-radius: 100%;
border: 1px solid #007BFF;
padding: 4px 4px 5px 4px;
font-weight: 600;
}


.edit_icons_plus {
color: #007BFF;
font-size: 16px;
border-radius: 100%;
border: 1px solid #007BFF;
padding: 6px 6px 5px 6px;
font-weight: 600;
}

.search-results {
border: 1px solid #ccc;
max-height: 200px;
overflow-y: auto;
margin-top: 5px;
position: absolute;
top: 38px;
background: white;
width: 100%;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
padding: 15px 5px 14px 6px;
z-index: 2;
}


.search-results div {
padding: 8px;
cursor: pointer;
}
.search-results div:hover {
background: #f0f0f0;
}


.DebugLocation {
background: rgba(0,0,0,0.8);
color: #13ff13;
font-size: 12px;
padding: 4px 8px;
z-index: 9999;
font-family: monospace;

/* New additions for mobile */
max-width: 100%; /* Prevents container from exceeding screen width */
overflow-wrap: break-word; /* Break long words / URLs */
word-break: break-all; /* Extra aggressive breaking for really long strings */
}


textarea {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 13px;
}


.imedi8-form-row {
display: block;
align-items: center;
margin-bottom: 32px;
}
/*
.imedi8-form-left {
display: flex;
flex-direction: column;
align-items: center;
width: 58px;
flex-shrink: 0;
text-align: center;
padding: 0px 5px 0px 5px;
}
*/


.imedi8-form-left {
	/* display: flex; */
	/* flex-direction: column; */
	align-items: center;
	/* width: 58px; */
	/* flex-shrink: 0; */
	text-align: left;
	padding: 0px 5px 0px 9px;
	font-size: 8px;
}

.imedi8-form-left i {
font-size: 1.1rem;
margin-bottom: 4px;
color: #6d9fff;
display: none;
}
/*
.imedi8-form-left span {
font-size: 0.7rem;
color: #4f4f4f;
}

.imedi8-form-left span {
	font-size: 14px;
	color: #4f4f4f;
}
*/
.imedi8-form_heading {
	font-size: 13px;
	color: #4f4f4f;
	position: absolute;
	z-index: 1;
	background: white;
	left: 14px;
	top: -8px;
	padding: 0px 5px 0px 5px;
}

/*
.imedi8-form-left div {
	font-size: 13px;
	color: #4f4f4f;
	position: absolute;
	z-index: 2;
	background: white;
	left: 14px;
	top: -3px;
	padding: 0px 5px 0px 5px;
}

.imedi8-form-left span {
	font-size: 13px;
	color: #4f4f4f;
	position: absolute;
	z-index: 2;
	background: white;
	left: 14px;
	top: -3px;
	padding: 0px 5px 0px 5px;
}
*/
.imedi8-form-heading_main {
	font-size: 14px;
	margin: 0px 0px 4px 68px;
	color: #575555;
	letter-spacing: 3.3px;
}


.imedi8-form-heading {
font-size: 16px;
  font-weight: 600;
  margin: 0px 0px 7px 0px;
  color: #333;
}


.imedi8-form-right {
flex-grow: 1;
}

.imedi8-form-right input,
.imedi8-form-right textarea,
.imedi8-form-right select {
	/*
width: 90%;
padding: 10px 12px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 1rem;
font-size: 13px;
margin: 5px 8px 3px 5px;
*/
width: 90%;
  padding: 18px 12px;
  border-radius: 5px;
  border: 1px solid #757575;
  font-size: 1rem;
  font-size: 16px;
  margin: 5px 8px 3px 5px;

}



.imedi8-form-row {
 /* display: flex;*/
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.imedi8-form-left {
  flex: 0 0 180px; /* Adjust width for label area */
  padding: 0 5px 0 9px;
  text-align: left;
  position: relative;
}
.imedi8-form_heading {
	font-size: 12px;
	color: #4f4f4f;
	background: white;
	padding: 0 5px;
	position: absolute;
	top: -7px;
	left: 12px;
	display: inline-block;
}

.imedi8-form-right {
  flex: 1; /* Take remaining space */
  padding: 0 5px;
}

.imedi8-form-right input,
.imedi8-form-right textarea,
.imedi8-form-right select {
  width: 100%;
  padding: 14px 12px;
  border-radius: 5px;
  border: 1px solid #757575;
  font-size: 16px;
  box-sizing: border-box;
  margin: 5px 0 3px 0;
  font-size: 13px;
}

/* 📱 Mobile Fix: stack label & input vertically */
@media (max-width: 768px) {
  .imedi8-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .imedi8-form-left {
    flex: 1 0 100%;
    margin-bottom: 4px;
    text-align: left;
  }

  .imedi8-form-right {
    flex: 1 0 100%;
  }

  .imedi8-form-right input,
  .imedi8-form-right textarea,
  .imedi8-form-right select {
  
  }
}

.imedi8-radio-group {
display: flex;
gap: 12px;
}


#notes { width: 100%; height: 100px; }


.wrapper {
display: flex;
min-height: 100vh;
}

/* Sidebar */
.sidebar {
width: 250px;
background: #007BFF;
color: #fff;
padding: 20px;
flex-shrink: 0;
}

.sidebar h2 {
margin-top: 0;
}

.sidebar ul {
list-style: none;
padding: 0;
}

.sidebar ul li {
margin: 15px 0;
}

.sidebar ul li a {
color: #fff;
text-decoration: none;
}

/* Content */
.content {
flex: 1;
padding: 0px 0px 0px 0px;
}

/* Mobile view */
@media (max-width: 768px) {
.sidebar {
display: none;
}
.sidebar.active {
display: block;
}
.menu-toggle {
display: block;
background: #007BFF;
color: white;
padding: 10px 15px;
cursor: pointer;
border: none;
font-size: 18px;
}
}

.menu-toggle {
display: none; /* hidden on desktop */
}


.mini_button {
display: inline-block;
padding: 10px 5px;
background-color: #6363f4;
color: #fff;
font-size: 10px;
font-weight: 600;
text-align: center;
text-decoration: none;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 91px;
}


#session-timer {
position: fixed; /* Float above content */
top: 20px; /* Distance from top */
right: 20px; /* Distance from right */
width: 95px; /* Size of the circle */
height: 95px;
background: #0077cc; /* Circle color */
color: #fff; /* Text color */
border-radius: 50%; /* Make it circular */
display: flex; /* Center text */
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
z-index: 9999; /* Always on top */
}

.meetupxx {
display: inlne-block;
}
/* Save Button */
.button-skip {
display: inline-block;
padding: 12px 25px;
background-color: #fff;
/* nice blue */
color: #fff;
font-size: 16px;
font-weight: 600;
text-align: center;
text-decoration: none;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 120px;
color: #4a4ae0;
}

.button-skip:hover {
background-color: #4a4ae0;
/* slightly darker on hover */
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
transform: translateY(-1px);
color: #fff;
}

.button-skip:active {
background-color: #3b3bc1;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
transform: translateY(0);
color: #fff;
}

/* Optional: focus outline for accessibility */
.button-skip:focus {
outline: 2px solid #fff;
outline-offset: 2px;
}


/* Save Button */
.button-save {
display: inline-block;
padding: 12px 25px;
background-color: #007bff; /* nice blue */
color: #fff;
font-size: 16px;
font-weight: 600;
text-align: center;
text-decoration: none;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 120px;
}

.button-save:hover {
background-color: #4a4ae0; /* slightly darker on hover */
box-shadow: 0 6px 10px rgba(0,0,0,0.15);
transform: translateY(-1px);
}

.button-save:active {
background-color: #3b3bc1;
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
transform: translateY(0);
}

/* Optional: focus outline for accessibility */
.button-save:focus {
outline: 2px solid #fff;
outline-offset: 2px;
}


/* Wrapper for spacing */
.input-wrapper {
margin: 5px 0px 22px 0px;
width: 100%;
position: relative;
}

/* Stylish inputs and textarea */
.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="password"],
.input-wrapper textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid #ddd;
border-radius: 10px;
font-size: 16px;
transition: all 0.3s ease;
outline: none;
background: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
resize: vertical; /* allow vertical resize only */
}

/* Focus effect */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
border-color: #6363f4; /* blue border */
box-shadow: 0 0 8px rgba(99, 99, 244, 0.3);
}

/* Optional: Placeholder style */
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
color: #aaa;
font-style: italic;
}

.meetup {
	border-radius: 10px;
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.21);
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
	font-size: 16px;
	margin: 16px 0px 16px 0px;
	padding: 23px 6px 0px 0px;
	border: 1px solid #d2d2d2;
	background: #f7f7f7;
}

.meetup_edit {
position: absolute;
right: 3px;
top: -3px;
}



.OpenModal {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.63);
	backdrop-filter: none;
	/*
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
*/
display: none;
z-index: 10;
padding-top: 10px;
}


.modal-content {
background: #ffffff;
margin: 0 auto;
padding: 25px 30px;
/* width: 100%; */
max-width: 680px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
position: relative;
padding: 7px 8px 0px 8px;
border-radius: 10px;
box-shadow: 0 12px 30px rgba(0,0,0,0.12);
max-height: 98vh;
overflow-y: auto;
border: 1px solid #d0d0d0;
}


.close {
position: absolute;
top: 5px; right: 10px;
cursor: pointer;
font-size: 35px;
}
.

/* Optional: smooth scrolling */
.modal-content::-webkit-scrollbar {
width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
border-radius: 4px;
}
.modal-content::-webkit-scrollbar-track {
border-radius: 4px;
}