.mapOrganizationsContainer {
  display: flex;
  gap: 30px;
}

.mapOrganizations {
  width: 50%;
  border: 3px solid #1F6642;
  border-radius: 12px;
  overflow: hidden;
}

.mapPlaceholder {
    width: 100%;
    height: 380px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listOrganizations {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.tableWrapper {
  width: 100%;
}

.tableWrapper table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.tableHeader thead th {
  padding: 14px;
  font-weight: bold;
  text-align: left;
  color: #1F6642;
  background: #fff;
  font-size: 14px;
}
.scrollableBody {
  max-height: 320px;
  overflow-y: auto;
}

.scrollableBody::-webkit-scrollbar {
  width: 8px;        
}
.scrollableBody::-webkit-scrollbar-track {
  background: #f2f2f2; 
  border-radius: 20px; 
  padding: 4px;
}
.scrollableBody::-webkit-scrollbar-thumb {
  background-color: #1F6642; 
  border-radius: 20px;
  width: 4px;
  margin: 2px;

}

.scrollableBody table {
  width: 100%;
  border-collapse: collapse;
}

.scrollableBody td {
  padding: 16px 14px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  font-size: 14px;
  color: #333;
}

.scrollableBody td:first-child {
  width: 60px;
}

.scrollableBody td:last-child {
  width: 140px;
  text-align: right;
}

.tdCircle {
  width: 45px;
  height: 45px;
  background: #1F6642;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: auto;
}

@media(min-width: 320px) and (max-width: 720px){
    .mapOrganizationsContainer {
        flex-wrap: wrap;
    }

    .mapOrganizations{
        width: 100%;
    }
}



.organizationContainer{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.organizationInfo{
    background: #1F6642;
    width: 270px;
    border-radius: 20px;
    padding: 25px 30px;
}

.organizationPhoto{
    display: flex;
    justify-content: center;
}

.organizationPhoto img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.organizationInfoTitle p{
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
}

.organizationInfoTextBlock{
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
}

.organizationInfoTextBlock img{
    width: 20px;
	height: 20px;
}

.organizationInfoSocial{
    display: flex;
    justify-content: center;
    gap: 8px;
}

.organizationInfoSocialItem{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #334CB1;
    transition: .4s;
    margin-top: 20px;
    padding: 0;
}

.organizationInfoSocialItem:hover{
    background: #c69b7e;
}

.organizationInfoSocialItem img{
    width: 15px;
}

.organizationInfoWa{
    width: 100%;
    padding: 15px 0;
    background: #00AC2E;
    border-radius: 10px;
    margin-top: 10px;
    transition: .4s;
}

.organizationInfoWa{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.organizationInfoWa p{
    font-weight: bold;
    font-size: 16px;
}

.organizationInfoWa img{
    width: 28px;
}

.organizationInfoWa:hover{
    background: #0b8b2d;
}


.organizationContent{
    flex: 1;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
	background: none;
}

.tab {
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    border: 1px solid #334CB1;
}

.tab.active {
    background: none;
    border: 1px solid #334CB1;
    color: #334CB1;
}

.tabContent {
    display: none;
    margin-top: 20px;
}

.tabContent.active {
    display: block;
}


.services-block {
    display: flex;
    flex-direction: column;
}

.services-block .service-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    padding: 10px;
    background: #f4faff;
}

.services-block .service-item:nth-child(2n + 1) {
    background-color: #ffffff;
}

.services-block .service-item > :last-child {
    flex-shrink: 0;
}



.mapOrganization {
	border: 3px solid #1F6642;
	border-radius: 12px;
	width: 100%;
	height: 350px;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

@media(min-width: 320px) and (max-width: 550px){
  	.organizationContainer{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
  	}

	.organizationInfoContent{
		width: 100%;
	}

  	.organizationInfo{
		width: calc(100% - 60px);
  	}

} 