/* styles.css */

/* Floating Button Styles */
.parwis-floating-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: rgb(125, 0, 0); /* Base color */
    color: white; /* White text for contrast */
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 999;
}

.parwis-floating-button i {
    margin-right: 8px;
    font-size: 20px;
}

/* Hover Effect */
.parwis-floating-button:hover {
    background-color: rgb(155, 0, 0); /* Slightly lighter red for hover */
    font-weight: bolder;
}

/* Popup Styles */
.parwis-popup {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background-color: white; /* White background for contrast */
    border: 1px solid rgb(125, 0, 0); /* Border matches base color */
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
}

/* Popup Button Styles */
.parwis-popup-link-button {
    background-color: rgb(155, 0, 0); /* Slightly lighter red */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: block;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.parwis-popup-link-button i {
    margin-right: 8px;
    font-size: 20px;
}

.parwis-popup-link-button:hover {
    background-color: rgb(185, 0, 0); /* Even lighter red for hover on the popup button */
    color: white;
    font-weight: bolder;
}
