/* הכפתור הצף - עיצוב מעודכן (לשונית קטנה ללא אייקון) */
#tdm-rec-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99990;

    /* גודל וצורה */
    width: 100px;
    padding: 15px 10px;
    border-radius: 0 6px 6px 0; /* פינות עגולות רק בצד ימין */
    
    /* עיצוב */
    background-color: #e67e22;
    color: #fff;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;

    /* טקסט */
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3;
    
    transition: transform 0.3s ease, background-color 0.3s;
}

/* הסתרת האייקון */
#tdm-rec-btn .dashicons {
    display: none;
}

/* אפקט במעבר עכבר */
#tdm-rec-btn:hover {
    background-color: #d35400;
    transform: translateY(-50%) translateX(5px); /* תזוזה קטנה החוצה */
}

/* --- שאר ה-CSS של המודל (ללא שינוי) --- */
.tdm-rec-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    animation: tdmFadeIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.tdm-close-rec {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.tdm-close-rec:hover { color: #000; }

@keyframes tdmFadeIn { from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);} }