
.pdv-floating-button {
    position: fixed;
    bottom: 50px;
    left: 20px;
    z-index: 9999;
}

.pdv-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #fff8dc;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: width 0.3s ease;
    width: 50px;
}

.pdv-link:hover {
    width: 250px;
}

.pdv-icon {
    width: 30px;
    height: 30px;
    background-image: url("https://build.sodeware.net//wp-content/uploads/2025/05/logo_eucharist.png");
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pdv-text {
    color: #6b4e16;
    font-weight: bold;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdv-link:hover .pdv-text {
    opacity: 1;
}
