.center-box p {
    display: flex;
    /*align-items: center; /* Align icon and text vertically centered */
   /* vertical-align: middle;
    gap: 8px; /* Space between icon and text */
    border-bottom: 1px solid #ddd; /* Light gray divider between rows */
    padding-bottom: 10px; /* Spacing inside the row bottom */
    margin-bottom: 10px; /* Spacing between paragraphs */
    font-size: 15px;
    line-height: 1.4;
}

.center-box p i {
    color: #f55a17;
    width: 20px; /* Fix icon width to align text properly */
    min-width: 20px; /* Prevent icon from shrinking */
    margin-top: 3px; /* Slight adjustment to align icon with text baseline */
    text-align: center; /* Center icon inside fixed width */
}

.center-box p.events-aligned {
    display: flex;
    align-items: flex-start; /* Align icon to top */
   /* gap: 6px;*/
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.center-box p.events-aligned i {
    color: #f55a17;
    font-size: 16px;
    min-width: 20px;
    margin-top: 2px; /* Fine-tune to visually align with the first line */
}


.center-box p:last-child {
    border-bottom: none;
}

.center-box i {
    margin-right: 5px;
}

/* Default social network colors */
.social-icon.facebook { color: #1877F2; }
.social-icon.instagram { color: #833AB4; }
.social-icon.youtube { color: #FF0000; }
.social-icon.link { color: #555; }

/* Hover effect: all icons turn orange */
.social-icon-link:hover .social-icon {
    color: #f55a17;
}

.vmd-copy-shortcode:hover {
    text-decoration: underline;
}

.vmd-copy-address {
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease-in-out;
}

.vmd-copy-address:hover {
    color: #f55a17;
}

.vmd-copy-address::after {
    content: "Copied!";
    position: absolute;
    top: -22px;
    left: 0;
    background: #f55a17;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.vmd-copy-address.copied::after {
    opacity: 1;
}




.country-headline {
   font-size: 13px; 
   font-weight: 300;
}

.emp108-location-table {
  border-collapse: collapse;
  margin-top: 5px;
  width: 100%;
  
}



.emp108-category-header {
    text-align: left;
  background-color: transparent;
  font-weight: normal;
  padding: 5px 8px;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  color: #333;
}

.emp108-category-icon {
  margin-right: 6px;
  color: #f55a17;
}




.emp108-location-cell {
  padding: 6px 5px;
  color: #222;
  border-bottom: 0px solid #eee;
}

.emp108-location-title {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.emp108-location-title:hover {
  color: #f55a17;
}

.emp108-location-title::before {
  content: "• ";
  color: #f55a17; /* ili neka druga boja za bullet */
  margin-right: 4px;
}


/* Individual category colors – optional 
.emp108-cat-restaurant .emp108-location-title { color: #d35400; }
.emp108-cat-event .emp108-location-title { color: #8e44ad; }
.emp108-cat-iskcon_center .emp108-location-title { color: #2c3e50; }
.emp108-cat-nama_hatta .emp108-location-title { color: #27ae60; }*/

/* Container for selector and results */
.emp108-selector-wrapper {
  margin: 20px 0;
  padding: 15px;
  background: #fafafa;
  border: 0px solid #ddd;
  border-radius: 8px;
}

/* Label */
.emp108-country-label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

/* Dropdown */
.emp108-country-dropdown {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}

/* Results container */
.emp108-location-list-container {
  margin-top: 20px;
}

/* Responsive layout for location table */
@media screen and (max-width: 768px) {
  .emp108-location-table thead {
    display: none;
  }

  .emp108-location-table,
  .emp108-location-table tbody,
  .emp108-location-table tr,
  .emp108-location-table td {
    display: block;
    width: 100%;
  }

  .emp108-location-table tr {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }

  .emp108-location-cell {
    padding: 8px 10px;
    text-align: left;
  }

@media screen and (max-width: 768px) {
  .emp108-location-table {
    display: block;
    overflow-x: auto;
  }

  .emp108-location-table thead {
    display: table-header-group;
  }

  .emp108-location-table tr {
    display: table-row;
  }

  .emp108-location-table th,
  .emp108-location-table td {
    display: table-cell;
    padding: 8px 10px;
    text-align: left;
  }

  .emp108-location-table td {
    border-bottom: 1px solid #eee;
  }
}






