/* Basic styling for the map container */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex; 
    flex-direction: column; 
    height: 100vh; 
}

.controls {
    padding: 10px;
    background-color: #019c9e;
    border-bottom: 1px solid #ffffff;
    display: flex;
    gap: 15px;
    align-items: center;
}

.controls label {
    font-weight: bold;
    color: #ffffff;
}

.controls select {
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}

#map {
    flex-grow: 1; 
    width: 100%;
}



.leaflet-popup-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.leaflet-popup-content img {
  border-radius: 50%; /* Circular student photos */
  width: 50px;
  height: 50px;
}

.leaflet-popup-content h3 {
  margin: 0;
  font-size: 18px;
}

.leaflet-popup-content p {
  margin: 5px 0 0;
  font-size: 14px;
}

.leaflet-popup-content a {
  color: #0077B5; /* LinkedIn brand color */
  text-decoration: none;
}

.leaflet-popup-content a:hover {
  text-decoration: underline;
}

/* Custom circular marker */
.circular-marker {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid; /* Border color will be set dynamically */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.circular-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mirs {
  color: #222e5b;
}

.ifros {
  color: #019c9e;
}



.custom-cluster-icon {
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}


.custom-cluster-small {
    background-color: rgba(10, 130, 50, 0.7); /* Greenish */
    width: 30px !important; 
    height: 30px !important;
    line-height: 30px !important; 
    font-size: 12px;
}


.custom-cluster-medium {
    background-color: rgba(255, 193, 7, 0.7); 
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 14px;
}


.custom-cluster-large {
    background-color: rgba(211, 47, 47, 0.7); 
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 16px;
}