.openstreetmap {
  position: relative;
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  margin: 0px 0;
}

.openstreetmap #map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.openstreetmap .map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: white;
  padding: 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.openstreetmap .marker-content {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.openstreetmap .marker-content:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.openstreetmap .marker-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.openstreetmap .company-popup {
  max-width: 300px;
  font-family: 'Jost', sans-serif;
  padding: 5px;
}

.openstreetmap .popup-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.openstreetmap .popup-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #f0f0f0;
}

.openstreetmap .popup-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.openstreetmap .popup-content {
  margin-bottom: 15px;
}

.openstreetmap .popup-content p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.openstreetmap .popup-content strong {
  color: #333;
  font-weight: 600;
}

.openstreetmap .category-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: white;
}

.openstreetmap .category-badge.technology {
  background: #007bff;
}

.openstreetmap .category-badge.healthcare {
  background: #28a745;
}

.openstreetmap .category-badge.finance {
  background: #ffc107;
  color: #333;
}

.openstreetmap .category-badge.education {
  background: #17a2b8;
}

.openstreetmap .category-badge.retail {
  background: #dc3545;
}

.openstreetmap .popup-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.openstreetmap .popup-actions button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.openstreetmap .view-jobs-btn {
  background: #007bff;
  color: white;
}

.openstreetmap .view-jobs-btn:hover {
  background: #0056b3;
}

.openstreetmap .company-profile-btn {
  background: #6c757d;
  color: white;
}

.openstreetmap .company-profile-btn:hover {
  background: #545b62;
}

.openstreetmap .leaflet-popup-content-wrapper {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.openstreetmap .leaflet-popup-content {
  margin: 0;
  padding: 0;
}

.openstreetmap .leaflet-popup-tip {
  background: white;
}

@media (max-width: 768px) {
  .openstreetmap .openstreetmap {
    height: 500px;
  }
  .openstreetmap .map-controls {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 15px;
    min-width: auto;
  }
  .openstreetmap .search-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .openstreetmap .popup-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .openstreetmap .company-popup {
    max-width: 250px;
  }
}

.companies-list .container {
  width: 95%;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.companies-list .container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  border-radius: 10px;
  width: calc(50% - 10px);
  min-width: 400px;
  max-width: 500px;
  border: 0.5px solid #545b62;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.companies-list .container .box .left {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.companies-list .container .box .left .image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.companies-list .container .box .mid .uppart .title a {
  color: #202124;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.companies-list .container .box .mid .uppart .description a {
  color: #202124;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.companies-list .container .box .right .jobsposted {
  color: #03429f;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(3, 66, 159, 0.15);
  padding: 10px 15px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .companies-list .container .box {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .openstreetmap {
    height: 400px;
  }
  .openstreetmap .map-controls {
    padding: 10px;
  }
  .openstreetmap .company-popup {
    max-width: 200px;
  }
  .openstreetmap .popup-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .companies-list .container {
    width: 95%;
    padding: 15px 0;
  }
  .companies-list .container .box {
    padding: 12px;
    gap: 15px;
  }
  .companies-list .container .box .left {
    width: 80px;
    height: 80px;
  }
  .companies-list .container .box .left .image img {
    width: 80px;
    height: 80px;
  }
  .companies-list .container .box .mid .uppart .title a {
    font-size: 16px;
  }
  .companies-list .container .box .mid .uppart .description a {
    font-size: 13px;
  }
  .companies-list .container .box .right .jobsposted {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/*# sourceMappingURL=companies.css.map */