#favor-protect-widget {
    position: fixed;
    z-index: 999999;
    bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.favor-position-right { right: 30px; }
.favor-position-left { left: 30px; }

#favor-protect-toggle {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.favor-options, 
.favor-panel {
    display: none;
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 320px;
}

.favor-option-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.favor-emergency {
    margin: 15px 0;
    text-align: center;
}

.favor-emergency-btn {
    display: block;
    background: #c0392b;
    color: white;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.favor-form-group {
    margin-bottom: 15px;
}

.favor-form-group input,
.favor-form-group select,
.favor-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.favor-submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

#favor-response {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    display: none;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .favor-position-right { right: 15px; }
    .favor-position-left { left: 15px; }
    .favor-panel { width: 280px; }
}