
#tio-repair-btn {
    position: fixed;
    bottom: 25px;
    z-index: 9999;
    cursor: pointer;
}
.tio-repair-left { left: 25px; }
.tio-repair-center { left: 50%; transform: translateX(-50%); }
.tio-repair-right { right: 25px; }

.tio-repair-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tio-repair-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

.tio-repair-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 15px;
    width: 220px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.tio-repair-popup p {
    color: #333;
    margin: 0 0 10px;
}

.tio-repair-chat-btn {
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.tio-repair-chat-btn:hover {
    background: #1ebe5d;
}
