#sip-sticky-icons {
    position: fixed;
    top: 40%;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}
.sip-icon {
    background: #0073aa;
    color: white;
    padding: 12px 14px;
    margin: 5px 0;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
}

.sip-slide-panel {
    position: fixed;
    top: 10%;
    right: -100%;
    width: 350px;
    max-height: 80vh;
    background: #f7f7f7;
    box-shadow: -4px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: right 0.4s ease;
    z-index: 9998;
    overflow-y: auto;
    border-radius: 0 10px 10px 0;
}
.sip-slide-panel.active {
    right: 0;
}
.sip-close {
    position: absolute;
    left: -25px;
    top: 10px;
    background: #0073aa;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}
.sip-form {
    display: flex;
    flex-direction: column;
}

.sip-form label {
    margin-top: 10px;
    font-weight: bold;
}

.sip-form input, .sip-form textarea {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sip-form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.sip-form button:hover {
    background-color: #005f88;
}
    