/* ====================== Pharmacy Locator CSS - Μαύρο & Κόκκινο Θέμα ====================== */

#pharmacy-map {
    height: 650px;
    width: 100%;
    border: 3px solid #c8102e; /* Κόκκινο Ελλάδας */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pharmacy-filter-box {
    background: #1a1a1a;           /* Σκούρο μαύρο */
    border: 2px solid #c8102e;     /* Κόκκινο */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ffffff;
}

.pharmacy-filter-box h3 {
    color: #c8102e;
    margin-top: 0;
    border-bottom: 2px solid #c8102e;
    padding-bottom: 10px;
}

.pharmacy-filter-box label {
    color: #ffffff;
    font-weight: bold;
    display: block;
    margin: 12px 0 6px 0;
}

.pharmacy-filter-box select,
.pharmacy-filter-box input {
    width: 100%;
    padding: 10px;
    background: #2d2d2d;
    border: 1px solid #c8102e;
    color: #ffffff;
    border-radius: 4px;
}

.pharmacy-filter-box button {
    background: #c8102e;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.pharmacy-filter-box button:hover {
    background: #a00c24;
    transform: translateY(-2px);
}

#reset-map {
    background: #333333;
    margin-left: 10px;
}

#reset-map:hover {
    background: #555555;
}

/* Leaflet Customizations - Μαύρο & Κόκκινο */
.leaflet-popup-content-wrapper {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    border: 3px solid #c8102e;
}

.leaflet-popup-tip {
    background: #1a1a1a;
    border: 3px solid #c8102e;
}

.leaflet-marker-icon {
    filter: hue-rotate(330deg) saturate(2); /* Κόκκινη απόχρωση στις πινέζες */
}

/* Responsive */
@media (max-width: 768px) {
    #pharmacy-map {
        height: 500px;
    }
    
    .pharmacy-filter-box {
        padding: 15px;
    }
}




/* ==================== FULL WIDTH & ΜΕΓΑΛΥΤΕΡΟΣ ΧΑΡΤΗΣ ==================== */

.pharmacy-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
}

#pharmacy-map {
    height: 750px !important;     /* Μπορείς να το αλλάξεις σε 650px ή 800px */
    width: 100% !important;
    border: 3px solid #c8102e;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Κάνει και τη φόρμα πιο ευρύχωρη */
.pharmacy-filter-box {
    max-width: 100% !important;
    width: 100% !important;
    padding: 25px;
}


/* ==================== LIVE SEARCH - CURSOR POINTER ==================== */
/* Όταν πηγαίνεις το ποντίκι πάνω στα αποτελέσματα (data-city / data-area) */

#search-results .live-search-list li {
    cursor: pointer !important;
}

/* Προαιρετικό αλλά πολύ ωραίο hover effect (σκούρο κόκκινο σαν το υπόλοιπο form) */
#search-results .live-search-list li:hover {
    background-color: #c0392b;
    color: #fff;
    padding-left: 12px;
}





/* ==================== SIDE-BY-SIDE LAYOUT (30% / 70%) ==================== */

.pharmacy-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.pharmacy-filter-box {
    flex: 1 1 200px;           /* ≈ 30% */
    min-width: 200px;
    padding: 20px;
	height: 100% !important;
    min-height: 780px !important;
}

#pharmacy-map {
    flex: 2 1 787px;           /* ≈ 70% */
    height: 100% !important;
    min-height: 787px;
	border: 3px solid #c8102e;
    border-radius: 8px;
}
.pharmacy-filter-box-image img {
  width: 100%;
  height: 100%;
  //min-height: 372px;
  margin: 25px 0 0 0;
}

/* Responsive - όταν η οθόνη είναι μικρή, γίνεται πάλι κάτω-κάτω */
@media (max-width: 992px) {
    .pharmacy-filter-box,
    #pharmacy-map {
        flex: 1 1 100%;
    }
}



