/* pdf.css */
.pdf-container {
    direction: rtl;
    padding: 20mm;
    font-family: Arial, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    width: 100%; /* הסרת ההגבלה של 800px */
    box-sizing: border-box;
}

.pdf-header {
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: right;
    display: block;
}

.pdf-header h1 {
    font-size: 24px;
    margin: 0;
    color: #0f172a;
}

.pdf-title {
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.pdf-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    display: block;
    color: #334155;
}

.section-title {
    display: block;
    width: 100%;
    background: #f1f5f9;
    padding: 10px;
    border-right: 5px solid #3b82f6;
    font-weight: bold;
    margin: 20px 0 15px 0;
    clear: both;
}

/* טבלאות - הכרחי למניעת גלישת טקסט */
.pdf-table, .risk-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    table-layout: fixed; /* שומר על העמודות במקומן */
}

.pdf-table td, .risk-table td {
    padding: 10px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    vertical-align: top;
    word-wrap: break-word; /* מונע מהטקסט לצאת מהתא */
}

.label {
    font-weight: bold;
    background: #f8fafc;
    width: 25%;
}
.competitor-link-wrapper {
    display: block;
    margin-bottom: 5px;
    width: 100%;
}
.pdf-link {
    color: #2563eb !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block; /* שומר על הקישור כיחידה אחת */
    unicode-bidi: isolate; /* מונע ערבוב של עברית ואנגלית בקישור */
}
.competitor-item {
    display: block; /* חזרה לבלוק פשוט כדי למנוע מעיכה של פלקס */
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
    page-break-inside: avoid;
    clear: both;
}

.competitor-name {
    display: block;
    width: 100%;
    min-height: 25px; /* מבטיח מרחב מינימלי לשם */
    margin-bottom: 8px;
    text-align: right;
}

.competitor-name a {
    color: #2563eb;
    text-decoration: none;
    display: inline-block;
}

.competitor-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-right: 2px;
}

.pdf-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 10px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
    display: block;
}