#pharmapure-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pharmapure-modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.pp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.pp-close:hover {
    color: #000;
}

.pp-row {
    display: flex;
	flex-wrap:wrap;	
    gap: 10px;
    margin: 15px 0;
    align-items: center;
}

.pp-action {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #d01c7c;
    background: white;
    color: #d01c7c;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    min-width: 230px;
}

.pp-action:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#pp-zip {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.pharmapure-btn {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.pharmapure-btn:hover {
    background: #218838;
    color: white;
}

.pharmapure-btn.small {
    padding: 6px 12px;
    font-size: 14px;
}

#pp-map {
    height: 300px;
    width: 100%;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pp-stores-list {
    max-height: 300px;
    overflow-y: auto;
}

.pp-store-item {
    padding: 15px;
    border: 1px solid #eee;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.pp-store-item:hover {
    background: #f8f9fa;
}

.pp-store-item h4 {
    margin: 0 0 8px 0;
    color: #007cba;
}

.pp-store-item p {
    margin: 0 0 10px 0;
    color: #666;
}

.pp-store-info-window {
    padding: 10px;
    max-width: 250px;
}

.pp-store-info-window h4 {
    margin: 0 0 8px 0;
    color: #007cba;
}

.pp-store-info-window p {
    margin: 0 0 10px 0;
    color: #666;
}