#tsfp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
}
#tsfp-button img {
    width: 60px;
    border-radius: 50%;
}
#tsfp-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.tsfp-popup {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    font-family: sans-serif;
    position: relative;
}
.tsfp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}
.tsfp-popup h2 {
    text-align: center;
    margin-top: 0;
}
.tsfp-popup form input,
.tsfp-popup form select {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.tsfp-row {
    display: flex;
    gap: 10px;
}
.tsfp-row input { flex: 1; }
.tsfp-checks { margin-top: 10px; }
.tsfp-note {
    font-size: 12px;
    color: #444;
    margin-top: 8px;
}
.tsfp-popup button {
    background: #8C3B95;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

.tsfp-label {
    font-weight: bold;
    font-size: 14px;
    color: #f7dc79;
    white-space: nowrap;
}