.nfc-location-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

#map {
    width: 100%;
    height: 300px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#map,
#review-badge,
#no-review-badge {
    display: none;
}

#review-badge,
#no-review-badge {
    margin-top: 10px;
    font-weight: bold;
}

#review-badge {
    color: green;
}

#no-review-badge {
    color: #b00;
}

/* Fullscreen Mobile Search */
#mobile-fullscreen-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9); /* Προσθήκη διαφάνειας */
    z-index: 9999;
    display: none;
    flex-direction: column;
    font-family: sans-serif;
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Αλλαγή για στοίχιση του κουμπιού κλεισίματος δεξιά */
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

#mobile-store-search {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

#close-search {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

#search-results {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* Στυλ για το κάθε αποτέλεσμα */
.search-result {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center; /* Στοίχιση του εικονιδίου με το κείμενο */
}

.search-result:hover {
    background-color: #f0f0f0;
}

/* Στυλ για το εικονίδιο τοποθεσίας */
.search-result img {
    width: 20px;
    height: 20px;
    margin-right: 10px; /* Διάστημα μεταξύ του εικονιδίου και του κειμένου */
}

/* Προσθήκη padding για το overlay για καλύτερη εμφάνιση */
#mobile-overlay {
    padding: 20px;
    background-color: white;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

/* Στυλ για το input της αναζήτησης */
#store-location {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/* Προσθήκη του κλεισίματος για το popup (search) */
#close-search {
    font-size: 20px;
    cursor: pointer;
    color: #888;
    border: none;
    background: none;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper input {
    padding-left: 38px !important; /* Για να μην πατάει το κείμενο πάνω στο icon */
    flex: 1;
}

.search-input-wrapper .google-icon {
    position: absolute;
	transform: translateY(-30%);
    left: 12px;
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0.7;
}


@media (max-width: 768px) {
  .pac-container {
    display: none !important;
  }
}

.nfc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 600px;
    transition: box-shadow 0.3s ease;
}

.nfc-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.nfc-card input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
}

#review-badge,
#no-review-badge {
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
}

#review-badge {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

#no-review-badge {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: #b71c1c;
}

@media (max-width: 768px) {
  .nfc-card {
    padding: 16px;
    border-radius: 8px;
    margin: 10px;
  }
}