/*
 Theme Name: SpotMeApp Child (BuddyX)
 Theme URI: https://spotmeapp.site
 Description: Child theme for SpotMeApp using the BuddyX parent theme.
 Author: Tunde & ChatGPT
 Version: 1.0.0
 Template: buddyx
 Text Domain: spotmeapp-child-buddyx
*/

/* Place your custom CSS below */


/* === SpotMeApp Custom Tweaks === */

/* Map container padding */
#spotme-map, .leaflet-container {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Popup buttons */
.leaflet-popup-content .spotme-button {
    display: inline-block;
    padding: 6px 14px;
    margin-top: 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #0073e6;
    transition: background 0.2s ease-in-out;
}
.leaflet-popup-content .spotme-button:hover {
    background: #005bb5;
}

/* Profile/nearby list tweaks */
.spotme-nearby-list {
    margin-top: 10px;
}
.spotme-nearby-list .user-card {
    padding: 8px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.spotme-nearby-list .user-card img.avatar {
    border-radius: 50%;
    margin-right: 10px;
    width: 36px;
    height: 36px;
}

