﻿:root {
    --bs-primary-rgb: #e91e63;
    --primary-color: #e91e63; /* Example brand color */
    --success-color: #4caf50;
    --secondary-color: #514f64; /* Example secondary color */
    --text-color: #333;
    --bg-color: #F6F6F8;
}
/* Add this to your site.css file */

#pwaInstallButton {
    position: fixed;
    right: 15px;
    top: 10px;
    z-index: 9999;
    border-radius: 5px;
    padding: 0.3rem 0.75rem;
    background-color: #000;
    border-color: #5e72e4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#pwaInstallButton:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

#pwaInstallIcon {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

/* Media query for smaller screens */
@media (max-width: 576px) {
    #pwaInstallButton {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }

    #pwaInstallIcon {
        height: 16px;
    }
}
