/* --- Sticky Sidebar & Filters --- */

.tdm-sticky-filters {
    background: #fff; padding: 25px; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eee;
    position: sticky; top: 20px; 
}

/* --- שורת כותרת בסרגל הצד (חדש) --- */
.tdm-sidebar-header {
    display: flex;
    justify-content: space-between; /* כותרת מימין, כפתור משמאל */
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0; /* קו הפרדה */
}

.tdm-sidebar-header h3 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    border: none; /* ביטול גבולות ישנים אם היו */
}

/* --- כפתור המלצה "גלולה" בכותרת (חדש) --- */
.tdm-header-rec-btn {
    background: transparent;
    border: 1px solid #e67e22; /* מסגרת כתומה עדינה */
    color: #e67e22;
    border-radius: 20px; /* צורת גלולה */
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap; /* מונע שבירת שורות */
    line-height: 1;
}

.tdm-header-rec-btn span.dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin: 0;
    margin-top: 2px; /* תיקון מיקום מזערי לאייקון */
}

.tdm-header-rec-btn:hover {
    background-color: #e67e22;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
}

/* --- פילטרים --- */
.filter-group { margin-bottom: 25px; }
.filter-group h4 { margin-bottom: 10px; font-size: 1rem; color: #333; }
.filter-group label { display: block; margin-bottom: 8px; cursor: pointer; font-size: 0.95rem; color: #555; transition: color 0.2s; }
.filter-group label:hover { color: #0073aa; }
.filter-group input[type="checkbox"] { margin-left: 8px; accent-color: #0073aa; }

/* --- כפתורי פעולה ראשיים (מיון) --- */
.tdm-sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tdm-action-btn {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tdm-action-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* כפתור כחול */
.btn-blue {
    background-color: #0073aa;
    color: white;
}
.btn-blue:hover {
    background-color: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* סטטוס מיקום */
#tdm-location-status {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 5px;
    min-height: 15px;
}

