/* Container layout */
#argo-store-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Sidebar on left for desktop */
#argo-store-list {
    list-style: none;
    max-height: 600px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    width: 300px;
    flex-shrink: 0;
}

/* Map takes remaining width */
#argo-store-map {
    flex: 1;
    min-height: 600px;
	order: 2;
}

/* Sidebar items */
#argo-store-list .argo-store-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
	order: 1;
}

/* Active store highlight */
#argo-store-list .argo-store-item.active {
    background-color: #8e232d;
    color: #fff;
    font-weight: bold;
}

/* Responsive: sidebar below map on small screens */
@media (max-width: 768px) {
    #argo-store-container {
        flex-direction: column;
    }

    #argo-store-list {
        width: 100%;
        max-height: 200px;
		order: 2;
    }

    #argo-store-map {
        min-height: 400px;
		order: 1;
    }
}


/* stylin' */
.leaflet-popup-close-button {
	color: white !important;
}

.p-small {
	margin-top:5px !important;
}


#argo-store-list .store-title {
	color: #8e232d;
}

#argo-store-list .argo-store-item.active h5.store-title {
	color: #ffd300;
}

#argo-store-list .argo-store-item {
	padding: 15px;
}

#argo-store-list .store-details {
	padding-top: 0.5em;
}

#argo-store-list .p-store {
	margin-bottom: 0.5em !important;
}

#argo-store-list .p-subtitle {
	font-weight: bold;
	margin-top: 1.5em;
}

#argo-store-list .p-store .day-label {
	color: #ffd300;
}

#argo-store-list .p-store .day-value {
    display: inline-block;
	line-height: 1.2em;
}