      html, body {
            height: 100%;
            margin: 0;
            padding: 0;
			 font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
        }
        
        #map {
            height: 100vh;
            width: 100%;
        }

        .add-button {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1000;
            
            cursor: pointer;
		}

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 100000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            width: 90%;
            max-width: 800px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

       

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .submit-button {
            width: 100%;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            margin-top: 10px;
        }

        .ui-autocomplete {
            z-index: 2100 !important;
            max-height: 200px;
            overflow-y: auto;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .search-wrapper {
            position: relative;
        }

        .loader {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border: 2px solid #f3f3f3;
            border-radius: 50%;
            border-top: 2px solid #3498db;
            display: none;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
        }

        .error-message {
            color: #ff0000;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .error-button {
            color: #ff0000;
            text-decoration: underline;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            font-size: 12px;
        }

        .error-button:hover {
            color: #cc0000;
        }
		
		.ui-autocomplete {
    max-height: none !important;
    border: none;
    padding: 0;
    margin: 0;
}
		
	
.custom-popup {
    width: 100%;
}

.popup-content {
    padding: 15px;
	font-family: "Nunito", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
	text-align: center;
}

		.popup-content h3{
			font-weight: bold;
		}
	
.website-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #4CAF50;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    margin: 15px 0;
    border: none;
    transition: background-color 0.3s ease;
}

.website-button:hover {
    background-color: #45a049;
    text-decoration: none;
    color: #fff;
}

	
.spotify-player {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
}

	
.popup-content h3{
    margin: 0;
}
		.popup-content p {
	margin: 0;
    margin-bottom: 20px;
}

		
		
	
.legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

.legend-item.disabled {
  opacity: 0.5;
}

.legend-item.disabled span {
  text-decoration: line-through;
}

.legend-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
	

.leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 0;
    min-width: 250px !important;
}

.leaflet-popup-tip-container {
    margin-top: -1px;
}

.image-container {
    position: relative;
    width: 100%;
}
.custom-popup img {
  width: 100%;
  height: auto;        
  max-height: 300px;  
  object-fit: cover;  
  border-radius: 8px 8px 0 0;
  background: #000;  
}

.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
   display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2001;
    cursor: pointer;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.popup-content {
    padding: 15px;
}
		
		.leaflet-bottom{
			display: none;
		}	
		
		#logo{
			position: fixed;
			bottom: 20px;
			left: 20px;
			z-index: 99999;
			max-width: 100px;
			 transform:rotate(360deg);
			transition:transform .2s ease;
		}
	
		#logo:hover{
			 transform:rotate(180deg);
			transition:transform .2s ease;
		}
		
.form-columns {
    display: flex;
    gap: 20px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.form-left label {
    font-weight: 500;
    margin-bottom: 10px;
}

.photo-upload{ overflow: hidden; }            
#photoPreview{ width:100%; height:220px; object-fit:cover; }

@media (min-width: 768px){
  .photo-upload{ height:100%; }                
  #photoPreview{ height:100%; object-fit:cover; } 
}
		
.ui-autocomplete {
  max-height: 250px; 
  overflow-y: auto; 
  overflow-x: hidden; 
  padding-right: 5px; 
  scrollbar-width: thin;
}

.ui-autocomplete::-webkit-scrollbar {
  width: 6px;   
  height: 0;  
}

.ui-autocomplete::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
		
#formLoader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

#formLoader .spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
		
.marker-cluster {
  background: rgba(0, 0, 0, 0.8);
}

.marker-cluster div {
  background: #000;      
  color: #fff;                  
  font-size: 14px;
}
		
		.festivalYEAH_icon{
			background: #fe015f;
			display: inline-block;
			padding: 6px;
			color: #FFF;
			border-radius: 4px;
			border: 2px solid #fe015f;
			margin-bottom: 10px;
		}
		.festivalYEAH_icon:hover{
			background: #fff;
			color: #fe015f;
			transition: all 0.3s ease;
		}
		
.form-check-input{
  border-color:#000;
}

.form-check-input:checked{
  background-color:#000;
  border-color:#000;
}

.form-check-input:focus{
  border-color:#000;
  box-shadow: 0 0 0 .2rem rgba(0,0,0,.15);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}
	
	
#pageLoader{
  position:fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background:#000;
  z-index:99999;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:opacity .6s ease, visibility .6s ease;
}

#pageLoader.hidden{
  opacity:0;
  visibility:hidden;
}

body.loading{
  overflow:hidden;
}

.loader-inner{
  text-align:center;
  color:white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:1px;
  font-size:14px;
}

.loader-logo{
  width:90px;
  height:90px;
  margin:0 auto 18px auto;
}

.loader-logo svg{
  width:100%;
  height:100%;
  display:block;
  animation:spin 2.4s linear infinite;
  transform-origin:center center;
}

.loader-text{
  opacity:0.75;
  font-size:13px;
}

@keyframes spin{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
		
.dots::after{
  content:"";
  display:inline-block;
  width:1.2em;
  text-align:left;
  animation:dotsAnim 1.2s steps(4, end) infinite;
}

@keyframes dotsAnim{
  0%   { content:""; }
  25%  { content:"."; }
  50%  { content:".."; }
  75%  { content:"..."; }
  100% { content:""; }
}