.container-main {}

.container-content {
	display: flex;

	margin: 0 auto;
	background-color: white;

@media (max-width:800px){
    flex-direction:column-reverse;
}
}

/* Main Content */
.main-content {
	flex: 2;
	padding: 20px 40px;
}

.main-content h1 {
	color: #00A0A0;
	margin-bottom: 20px;
	font-size: 28px;
}

.main-content h2 {
	color: #00A0A0;
	margin: 30px 0 15px 0;
	font-size: 22px;
}

.main-header a {
	color: #00a8a8;
	border: 1px solid #00a8a8;
	padding: 16px 27px;
	margin-top: 112px;
	margin-right: 21px;
	border-radius: 25px;
}


.main-content p {
	margin-bottom: 15px;
	text-align: right;
}

.address-line {
	margin-bottom: 15px;
}

.partners {
	margin-top: 30px;
}

.partners h2 {
	margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
	flex: 1;
	padding: 20px;
	border-right: 1px solid #eaeaea;
}

.sidebar-section {
	margin-bottom: 40px;
	border-bottom: 1px solid #00a0a052;
	padding-bottom: 30px;
}

.sidebar-section:last-child {
	border-bottom: none;
}

.sidebar-section h2 {
	color: #00A0A0;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	font-size: 22px;
}

.sidebar-section h2 svg {
	margin-right: -40px;
	background: white;
	z-index: 50;
}

.sidebar-section p {
	margin-bottom: 10px;
}

/* Manager Profile Styles */
.manager-info {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 12px;
}

.manager-img-container {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 15px;
	border: 3px solid #00A0A0;
}

.manager-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.manager-img-container:hover img {
	transform: scale(1.3);
}


.no-manager-message {
	text-align: center;
	padding: 15px;
	background-color: #f8f8f8;
	border-radius: 8px;
	margin-top: 10px;
}

.no-manager-text {
	color: #888;
	font-style: italic;
	margin-top: 10px;
}

.manager-img-container svg {
	display: block;
	margin: 0 auto;
}

.manager-details {
	flex: 1;
}

.manager-name {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
}

.manager-title {
	color: #666;
	font-size: 14px;
}

.icon {
	margin-left: 10px;
	color: #00A0A0;
	font-size: 20px;
	margin-right: -40px;
}



.events-section {
	margin-top: 100px;

}

.events-section main {
	background-image: url('images/bg-events.svg');
	background-repeat: no-repeat;
	background-position: right;
	padding: 20px;
}

.events-main-container {
	background: #fff;
	position: relative;
	z-index: 1000;
	width: 42%;
	right: 96px;
	margin: 0 auto;
}

.event-container {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 50px 0;
	position: relative;
}

.event-container:hover {
	text-decoration: none;
}

.day-number-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
}

.day-number {
	border: 1px solid #acacac;
	border-radius: 10px;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.day-number-text {
	color: #00B0BE;
	font-size: 4rem;
	font-weight: bold;
}

.event-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right;
	flex: 1;
	/* Allows it to take remaining space */
}

.event-date {
	color: #00B0BE;
	margin: 0;
}

.event-title {
	background: #fff;
	z-index: 5000;
	border-top: 1px solid #acacac;
	border-bottom: 1px solid #acacac;
	font-size: 1.5rem;
	color: #333;
	text-align: right;
	padding: 6px 10px;
	/* Adjusted padding for better spacing */
	margin-right: -30px;
	word-break: break-word;
	/* Breaks long words to fit */
	max-width: 75%;
	/* Ensures it doesn’t overflow its container */
	box-sizing: border-box;
	/* Includes padding in width calculation */
}

.event-category {
	color: #666;
	margin: 0;
}

.main-header {
	text-align: center;
	margin-bottom: 30px;
	padding: 0 20px;
	padding-bottom: 15px;
}

.main-header h1 {
	font-size: 2.8rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 30px;
}

.main-header h1 span {
	color: #00a8a8;
}




.activities-section {


	margin: 150px 0;
	margin-top:300px;
}


.cool-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

.cool-wrapper img {
	margin-top:-220px;
	margin-bottom: -135px;
	width: 60%;
	height: auto;
}

.activities-section table {
	width: 100%;
	border-collapse: collapse;
	background-color: white;
	border-radius: 5px;
	overflow: hidden;
	z-index: 100;
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.activities-section thead {
	background-color: #00adb5;
	color: white;
}

.activities-section th {
	padding: 15px 10px;
	text-align: right;
	font-weight: bold;
}

.activities-section td {
	padding: 15px 10px;
	border-bottom: 1px solid #efefef;
}

.activities-section tr:last-child td {
	border-bottom: none;
}

.activities-section .btn {
	background-color: #8bc34a;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
}

.activities-section .btn:hover {
	background-color: #7cb342;
}

.activities-section tr.data-row {
	cursor: pointer;
	transition: background-color 0.2s;
}

.activities-section tr.data-row:hover {
	background-color: #f9f9f9;
}

.activities-section .expanded-content {
	display: none;
	background-color: #f5f5f5;
	padding: 20px;
	border-top: 1px solid #ddd;
}

.expanded-content.active {
	display: table-row;
}

.expanded-cell {
	padding: 20px;
}



.phonebook-section {
	margin: 100px 0;
}

/* Main container for all contacts */
.contacts-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	column-gap: 50px;
	row-gap: 35px;
	padding: 20px;
	max-width: 73vw;
	margin: 0 auto;
}

/* Individual contact card */
.contact {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	padding: 20px;
	position: relative;
	overflow: hidden;
}


/* Contact name and job title */
.contact h3 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 600;
	color: #333;
	text-align: right;
	direction: rtl;
}

/* Container for contact details */
.contact>div {
	display: flex;
	border-right: 3px solid #00A8A9;
	padding: 0 25px;
	flex-direction: column;
	align-items: flex-start;
}

/* Individual contact detail lines */
.contact>div>div {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	font-size: 14px;
	color: #555;
}

/* Icons */
.contact em.fa {
	color: #666;
	font-size: 16px;
	min-width: 20px;
	text-align: center;
}

/* Email links */
.contact a {
	color: #00a0e4;
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 992px) {
	.contacts-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.cool-wrapper img {
		margin-top:-85px;
		margin-bottom: -200px;
		width: 60%;
		height: auto;
	}
	
}

@media (max-width: 768px) {
	.contacts-container {
		grid-template-columns: 1fr;
	}
}

.more-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	direction: rtl;
}

.more-container a:hover {
	text-decoration: none;
}

.header-text {
	margin-bottom: 50px;
}

.header-text h1 {
	font-size: 36px;
	color: #444;
	margin-bottom: 10px;
	text-align: center;
}

.header-text h1 span.colored {
	color: #00b3b3;
}

.nav-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.nav-button {
	border: 2px solid #00b3b3;
	border-radius: 25px;
	padding: 12px 30px;
	color: #00b3b3;
	background-color: white;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	white-space: nowrap;
	margin-bottom: 10px;
}

.nav-button:hover {
	background-color: #00b3b3;
	color: white;
	text-decoration: none;
}

@media (max-width: 768px) {
	.nav-container {
		gap: 15px;
	}

	.nav-button {
		padding: 10px 20px;
		font-size: 16px;
	}
}

.seperator {
	width: 100%;
	height: 2px;
	background: #acacac;
}

.inner-container {
	display: flex;
	justify-content: space-between;

	margin-right: 80px;
	max-width: 80%;
	padding: 40px;
}

.section {
	margin-bottom: 20px;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00a0b0;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;

}

.section-title i {
	margin-right: 8px;
}

.cost-section {
	text-align: center;
}

.cost {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
}

.shekel {
	font-weight: normal;
}

.register-button {
	background-color: #00a0b0;
	color: white;
	border: none;
	border-radius: 7px;
	padding: 10px 20px;
	font-size: 21px;
	cursor: pointer;
	width: 100%;
	max-width: 300px;
}

.info-grid {
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px;
	text-align: right;
	margin-top: 10px;
}

.info-label {
	font-weight: bold;
}

.info-value {
	text-align: right;
}


@media (max-width: 768px) {

	.activities-section th,
	td {
		padding: 10px 5px;
		font-size: 14px;
	}

	.activities-section .btn {
		padding: 8px 12px;
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	.mobile-hide {
		display: none;
	}

	.activities-section th,
	td {
		font-size: 12px;
		padding: 8px 4px;
	}
	.ic-table

	{
		width: 25px !important;
		height: 25px !important;
	}
	.section-title
	{
	    justify-content: flex-start;
		font-size: 18px !important;
		padding-right:2.2rem;
	}
	.inner-container {
		display: flex;
		justify-content: space-between;
	
		margin-right: 0 !important;
		max-width: 100% !important;
		padding: 40px 10px !important;
		
		@media (max-width:800px){
		    flex-direction:column;
		}
	}
	.main-header h1 {
		font-size: 2.0em;
		color: #333;
		font-weight: 700;
		margin-bottom: 30px;
	}
	.events-section main {
		background-image: none;
		background-repeat: no-repeat;
		background-position: right;
		padding: 20px;
	}

	.events-main-container {
		width: 100%;
		position: relative;
		z-index: 1000;
		right: unset;
		margin: 0 auto;
	}

	.event-title {

		font-size: 1rem;
	}

	.section-title a {
		color: #00a8a8;
		text-decoration: none;
		z-index: 50;
		background-color: #fcfcfc;
		font-size: 1.2rem;
		padding: 0;
		border: none;
		margin-right: -71px;
	}
}