/* tenderDetailsModal.css - NAPRAWIONY UTF-8 + CZERWONE KÓŁKO */

.tender-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tender-modal-container {
    background: white;
    border-radius: 12px;
    width: 95%;
    max-width: 1500px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.tender-modal-container.fullscreen-mode {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
}

.tender-modal-container.fullscreen-mode .tender-modal-content {
    padding: 0;
    flex: 1;
}

.tender-modal-container.fullscreen-mode #tabSections {
    height: 100%;
}

.tender-modal-container.fullscreen-mode .modal-sections-layout {
    flex: 1;
    max-height: calc(100vh - 120px);
    min-height: 0;
}

.tender-modal-container.fullscreen-mode .full-view-container {
    flex: 1;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    min-height: 0;
}

.tender-modal-container.fullscreen-mode .tender-modal-footer {
    display: flex !important;
    padding: 4px 8px;
    min-height: auto;
    border-top: none;
}

.tender-modal-container.fullscreen-mode .tender-modal-footer button {
    padding: 6px 10px;
    font-size: 12px;
}

.tender-modal-container.fullscreen-mode .tender-modal-footer button i {
    font-size: 11px;
}

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

/* Header */
.tender-modal-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.tender-modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding-right: 50px;
    line-height: 1.4;
}

.tender-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tender-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Status Bar z CZERWONYM KÓŁKIEM */
.tender-status-bar {
    padding: 24px 32px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* DEADLINE INDICATOR - CZERWONE KÓŁKO */
.deadline-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deadline-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Kolory kółka */
.deadline-indicator.red .deadline-circle {
    background: linear-gradient(135deg, #ff4757 0%, #d32f2f 100%);
}

.deadline-indicator.orange .deadline-circle {
    background: linear-gradient(135deg, #ffa502 0%, #ff6348 100%);
}

.deadline-indicator.yellow .deadline-circle {
    background: linear-gradient(135deg, #ffd32a 0%, #ffb142 100%);
}

.deadline-indicator.green .deadline-circle {
    background: linear-gradient(135deg, #4cd137 0%, #27ae60 100%);
}

.deadline-indicator.gray .deadline-circle {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.deadline-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.deadline-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline-text {
    font-size: 12px;
    font-weight: 600;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline-indicator.red .deadline-text {
    color: #d32f2f;
}

.deadline-indicator.orange .deadline-text {
    color: #ff6348;
}

.deadline-indicator.yellow .deadline-text {
    color: #ffb142;
}

.deadline-indicator.green .deadline-text {
    color: #27ae60;
}

.deadline-indicator.gray .deadline-text {
    color: #7f8c8d;
}

/* Compact info */
.tender-info-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tender-info-compact .info-row {
    display: flex;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.tender-info-compact .info-row strong {
    color: #555;
    min-width: 180px;
}

.tender-info-compact .info-row span {
    color: #222;
    font-weight: 500;
}

/* TABY */
.tender-modal-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #fafafa;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
}

.tabs-left {
    display: flex;
    gap: 0;
}

.quick-source-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-right: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.quick-source-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.tender-tab-btn {
    padding: 16px 32px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tender-tab-btn .tab-icon {
    font-size: 16px;
}

.tender-tab-btn .tab-text {
    font-size: 15px;
}

.tender-tab-btn:hover {
    color: #333;
    background: rgba(102, 126, 234, 0.05);
}

.tender-tab-btn.active {
    color: #667eea;
    background: white;
    border-bottom-color: #667eea;
    font-weight: 600;
}

/* Section View Toggle */
.sections-view-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0f4f8;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
    margin: 0;
}

.toggle-left {
    display: flex;
    gap: 8px;
}

.toggle-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fullscreen-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: white;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.fullscreen-toggle-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f8f9ff;
}

.fullscreen-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ef4444;
    border-radius: 8px;
    background: white;
    color: #ef4444;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.fullscreen-close-btn:hover {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.view-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    background: white;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.view-toggle-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.view-toggle-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* Sidebar Layout (Accordion alternative) */
.modal-sections-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 1;
    overflow: hidden;
    width: 100%;
    max-height: 400px;
}

.modal-sections-nav {
    flex: 0 0 45%;
    max-width: 45%;
    background: #f8fafc;
    border-right: 2px solid #e2e8f0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-sections-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.15s;
    flex-shrink: 0;
}

.modal-sections-item:hover {
    background: #f1f5f9;
}

.modal-sections-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-sections-item .nav-num {
    font-weight: 700;
    font-size: 14px;
    min-width: 28px;
}

.modal-sections-item .nav-title {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.modal-sections-item .nav-count {
    font-size: 12px;
    font-weight: 600;
    background: #e2e8f0;
    color: #64748b;
    padding: 4px 10px;
    border-radius: 12px;
    min-width: 28px;
    text-align: center;
}

.modal-sections-item.active .nav-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.modal-sections-content {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px;
    background: white;
    min-width: 0;
}

.sidebar-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.sidebar-section-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-field {
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-field:last-child {
    border-bottom: none;
}

.sidebar-field-header {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.sidebar-field-header .field-num {
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
}

.sidebar-field-header .field-label {
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}

.sidebar-field-value {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    padding-left: 4px;
}

.no-fields {
    color: #94a3b8;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

/* Full View Styles */
.full-view-container {
    max-width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 80px;
    overscroll-behavior: contain;
    max-height: 400px;
}

.full-view-section {
    margin-bottom: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.full-view-section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.full-view-section-content {
    padding: 16px 20px;
}

.full-view-field {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.full-view-field:last-child {
    border-bottom: none;
}

.full-view-field-header {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.full-view-field-header .field-number {
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
}

.full-view-field-header .field-label {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.full-view-field-value {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    padding-left: 4px;
}

/* Content */
.tender-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    background: #fafafa;
    width: 100%;
}

.tender-modal-content.sections-tab-active {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Loading */
.tender-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tab Content */
.tender-tab-content {
    animation: fadeInContent 0.3s;
    width: 100%;
}

#tabSections {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#sectionsContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.tender-tab-content > div {
    width: 100%;
}

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

/* SECTION ITEMS - dla Sekcji I-VIII */
.section-item {
    background: white;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.section-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.section-header {
    padding: 18px 24px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    border-bottom: 1px solid #f0f0f0;
}

.section-header strong {
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
}

.section-header i {
    font-size: 14px;
    color: #999;
    transition: transform 0.2s;
}

.section-item.collapsed .section-header i {
    transform: rotate(-90deg);
}

.section-content {
    padding: 12px 16px;
    color: #444;
    line-height: 1.8;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #fafafa;
}

.section-item.collapsed .section-content {
    display: none;
}

.section-content:empty::after {
    content: 'Brak treści';
    color: #999;
    font-style: italic;
}

/* Podstawowe - sections */
.tender-section {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.tender-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

/* Details List */
.details-list {
    display: grid;
    gap: 12px;
}

.detail-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row dt {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.detail-row dd {
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* Links */
.tender-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tender-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tender-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Error */
.tender-modal-error {
    padding: 60px 40px;
    text-align: center;
}

.tender-modal-error h3 {
    color: #d32f2f;
    font-size: 18px;
    margin: 16px 0 8px 0;
}

.tender-modal-error p {
    color: #666;
    font-size: 14px;
}

/* Mobile */
/* ==================== MOBILE STYLES ==================== */
@media (max-width: 768px) {
    /* MODAL - fullscreen na mobile */
    .tender-modal-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    
    /* HEADER - kompaktowy */
    .tender-modal-header {
        padding: 0.5rem 0.75rem !important;
        padding-right: 2.5rem !important;
    }
    
    .tender-modal-header h2 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        padding-right: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .tender-modal-close {
        top: 0.4rem !important;
        right: 0.4rem !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
    }
    
    /* STRZAŁKI NAWIGACJI - UKRYJ */
    .modal-nav-btn,
    .nav-prev,
    .nav-next,
    .tender-nav-btn,
    [class*="nav-arrow"],
    [class*="modal-arrow"] {
        display: none !important;
    }
    
    /* ============================================
       STATUS BAR - UKRYJ CAŁKOWICIE NA MOBILE!
       Info jest w tabce Podstawowe więc niepotrzebne
       ============================================ */
    .tender-status-bar {
        display: none !important;
    }
    
    /* WATCH BUTTON - ukryj */
    .watch-btn-container,
    .watch-btn,
    .btn-watch {
        display: none !important;
    }
    
    /* TABS - dodaj gap między ikoną a tekstem */
    .tender-modal-tabs {
        overflow: hidden !important;
        padding: 0 !important;
        gap: 0 !important;
        display: flex !important;
        width: 100% !important;
    }
    
    .tabs-left {
        flex: 1 !important;
        display: flex !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    .tender-tab-btn {
        flex: 1 !important;
        padding: 0.6rem 0.2rem !important;
        border-bottom-width: 2px !important;
        text-align: center !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.25rem !important;
        font-size: 0.7rem !important;
    }
    
    .tab-icon,
    .tender-tab-btn .tab-icon,
    span.tab-icon {
        flex-shrink: 0 !important;
        margin-right: 0.15rem !important;
    }
    
    /* Quick source link - UKRYJ całkowicie na mobile */
    .quick-source-link {
        display: none !important;
    }
    
    /* SECTIONS VIEW TOGGLE - kompaktowy */
    .sections-view-toggle {
        padding: 0.4rem !important;
        gap: 0.25rem !important;
    }
    
    .toggle-left,
    .toggle-right {
        gap: 0.2rem !important;
    }
    
    .view-toggle-btn {
        padding: 0.25rem 0.4rem !important;
        font-size: 0.65rem !important;
    }
    
    .fullscreen-toggle-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }
    
    /* ============================================
       SECTIONS SPLIT VIEW - ZMIANA NA KOLUMNOWY
       ============================================ */
    .modal-sections-layout {
        flex-direction: column !important;
        max-height: none !important;
        overflow: visible !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        display: flex !important;
    }
    
    /* Nawigacja - GRID zamiast scroll */
    .modal-sections-nav {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        overflow: hidden !important;
        border-right: none !important;
        border-bottom: 2px solid #e2e8f0 !important;
        padding: 0.25rem !important;
        gap: 0.2rem !important;
    }
    
    .modal-sections-item {
        flex-shrink: 0 !important;
        padding: 0.3rem 0.2rem !important;
        border-bottom: none !important;
        border-radius: 4px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1px !important;
        min-width: 0 !important;
        min-height: 36px !important;
    }
    
    .modal-sections-item .nav-num {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        min-width: auto !important;
    }
    
    .modal-sections-item .nav-title {
        font-size: 0.45rem !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        line-height: 1.1 !important;
    }
    
    .modal-sections-item .nav-count {
        display: none !important;
    }
    
    /* Content - pełna szerokość */
    .modal-sections-content {
        flex: 1 1 auto !important;
        padding: 0.5rem !important;
        overflow-y: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        padding-bottom: 60px !important; /* miejsce na footer */
    }
    
    .sidebar-section-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.4rem !important;
    }
    
    .sidebar-section-fields {
        gap: 0.5rem !important;
    }
    
    .sidebar-field {
        padding-bottom: 0.5rem !important;
    }
    
    .sidebar-field-label {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .sidebar-field-value {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    /* CONTENT */
    .tender-modal-content {
        padding: 0.5rem !important;
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        min-height: 0 !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* SECTIONS */
    .sections-list {
        gap: 0.4rem !important;
    }
    
    .section-item {
        border-radius: 6px !important;
    }
    
    .section-header {
        padding: 0.5rem !important;
    }
    
    .section-header strong {
        font-size: 0.8rem !important;
    }
    
    .section-content {
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    /* TENDER SECTION */
    .tender-section {
        padding: 0.6rem !important;
        margin-bottom: 0.4rem !important;
        border-radius: 6px !important;
    }
    
    .tender-section h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.4rem !important;
    }
    
    /* DETAILS LIST */
    .details-list {
        gap: 0.3rem !important;
    }
    
    .detail-row {
        grid-template-columns: 1fr !important;
        gap: 0.1rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .detail-row dt {
        font-size: 0.7rem !important;
        color: #888 !important;
    }
    
    .detail-row dd {
        font-size: 0.8rem !important;
    }
    
    /* LINKS */
    .tender-links-list {
        gap: 0.4rem !important;
    }
    
    .tender-link {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
        gap: 0.4rem !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
    
    /* DOCUMENTS HELPER */
    .documents-helper {
        padding: 0.5rem !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .doc-section {
        padding: 0.5rem !important;
        margin-bottom: 0.4rem !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .doc-section-header {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .doc-section-value,
    .doc-section-value-row {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        padding-left: 0 !important;
    }
    
    .doc-section-value-row {
        display: flex !important;
        gap: 0.3rem !important;
        align-items: flex-start !important;
    }
    
    .doc-section-value-row .doc-section-value {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .doc-google-link {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .doc-helper-text {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .copy-btn {
        width: 26px !important;
        height: 26px !important;
    }
    
    /* FOOTER - kompaktowy, tylko ikony */
    .tender-modal-footer {
        padding: 0.4rem !important;
        gap: 0.25rem !important;
        flex-wrap: nowrap !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        flex-shrink: 0 !important;
    }
    
    .tender-modal-footer button {
        padding: 0.4rem 0.5rem !important;
        font-size: 0.7rem !important;
        flex: 1 !important;
        min-width: 0 !important;
        gap: 0.2rem !important;
    }
    
    .tender-modal-footer button i {
        font-size: 0.8rem !important;
    }
    
    /* Ukryj tekst w footer buttons - tylko ikony */
    .tender-modal-footer button span {
        display: none !important;
    }
    
    /* ERROR */
    .tender-modal-error {
        padding: 1.5rem 0.75rem !important;
    }
    
    .tender-modal-error h3 {
        font-size: 0.9rem !important;
    }
    
    .tender-modal-error p {
        font-size: 0.75rem !important;
    }
    
    /* FULL VIEW */
    .full-view-container {
        padding: 0.4rem !important;
    }
    
    .full-view-content {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}

/* ==================== IPHONE SE ==================== */
@media (max-width: 375px) {
    .tender-modal-header {
        padding: 0.4rem 0.6rem !important;
        padding-right: 2rem !important;
    }
    
    .tender-modal-header h2 {
        font-size: 0.8rem !important;
    }
    
    .tender-modal-close {
        width: 24px !important;
        height: 24px !important;
        font-size: 16px !important;
    }
    
    .tender-tab-btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.9rem !important;
    }
    
    .tender-modal-content {
        padding: 0.4rem !important;
    }
    
    .section-header strong {
        font-size: 0.75rem !important;
    }
    
    .section-content {
        font-size: 0.75rem !important;
    }
    
    .detail-row dt {
        font-size: 0.65rem !important;
    }
    
    .detail-row dd {
        font-size: 0.75rem !important;
    }
    
    .tender-modal-footer button {
        padding: 0.35rem 0.4rem !important;
        font-size: 0.65rem !important;
    }
}

/* Documents Helper Tab */
.documents-helper {
    padding: 24px;
    max-width: 700px;
}

.doc-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.doc-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 12px;
    font-size: 14px;
}

.doc-section-header i {
    color: #667eea;
    font-size: 16px;
}

.doc-section-value {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    padding-left: 26px;
    white-space: pre-wrap;
}

.doc-section-value-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-section-value-row .doc-section-value {
    flex: 1;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.copy-btn.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.doc-helper-text {
    color: #64748b;
    font-size: 13px;
    margin: 0 0 16px 0;
    padding-left: 26px;
}

.doc-google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 26px;
    transition: all 0.2s;
}

.doc-google-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

.doc-google-link i.fab {
    font-size: 18px;
}

.doc-google-link i.fa-external-link-alt {
    font-size: 12px;
    opacity: 0.8;
}

/* Przycisk "TO NIE DLA MNIE" w modalu */

/* Footer modala z 3 przyciskami OBOK SIEBIE */
.tender-modal-footer {
    width: 100%;
    padding: 0;
    background: white;
    border-top: 2px solid #e0e0e0;
    display: flex;
    flex-direction: row; /* OBOK SIEBIE! */
    flex-wrap: nowrap; /* NIE ZAWIJAJ! */
    gap: 0;
    flex-shrink: 0;
}

/* Przycisk "Dodaj do kalendarza" */
/* 🔥 OPCJA B - MINIMAL BORDER BUTTONS */

.btn-add-to-calendar {
    flex: 1;
    padding: 16px;
    border: 2px solid #cbd5e1;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    border-radius: 0 0 0 12px;
}

.btn-add-to-calendar:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.btn-add-to-calendar i {
    font-size: 15px;
}

/* Przycisk "Usuń z kalendarza" - border style */
.btn-remove-from-calendar {
    flex: 1;
    padding: 16px;
    border: 2px solid #fca5a5;
    background: transparent;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    border-radius: 0 0 0 12px;
}

.btn-remove-from-calendar:hover {
    background: #fef2f2;
    border-color: #ef4444;
    transform: translateY(-1px);
}

.btn-remove-from-calendar i {
    font-size: 15px;
}

/* Przycisk "Obserwuj" */
.btn-watch-tender {
    flex: 1;
    padding: 16px;
    border: 2px solid #cbd5e1;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    border-radius: 0;
}

.btn-watch-tender:hover {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #d97706;
    transform: translateY(-1px);
}

.btn-watch-tender.active {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #d97706;
}

.btn-watch-tender.active:hover {
    background: #fde68a;
    border-color: #f59e0b;
}

.btn-watch-tender i {
    font-size: 15px;
}

/* Przycisk "TO NIE DLA MNIE" */
.btn-hide-tender-modal {
    flex: 1;
    padding: 16px;
    border: 2px solid #cbd5e1;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    border-radius: 0 0 12px 0;
}

.btn-hide-tender-modal:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
    transform: translateY(-1px);
}

.btn-hide-tender-modal:active {
    transform: translateY(0);
}

.btn-hide-tender-modal i {
    font-size: 15px;
}

/* ========================================
   🌙 DARK MODE - MODAL PRZETARGÓW
   ======================================== */

body.dark-theme .tender-modal-overlay {
    background: rgba(0, 0, 0, 0.85);
}

body.dark-theme .tender-modal-container {
    background: #1e293b;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
}

/* Header */
body.dark-theme .tender-modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
}

body.dark-theme .tender-modal-header h2 {
    color: #ffffff;
}

body.dark-theme .tender-modal-close {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

body.dark-theme .tender-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Status Bar */
body.dark-theme .tender-status-bar {
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

body.dark-theme .tender-info-compact .info-row strong {
    color: #cbd5e1;
}

body.dark-theme .tender-info-compact .info-row span {
    color: #f1f5f9;
}

/* Tabs */
body.dark-theme .tender-modal-tabs {
    background: #0f172a;
    border-bottom: 2px solid #334155;
}

body.dark-theme .quick-source-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

body.dark-theme .quick-source-link:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

body.dark-theme .tender-tab-btn {
    color: #94a3b8;
}

body.dark-theme .tender-tab-btn:hover {
    color: #f1f5f9;
    background: rgba(96, 165, 250, 0.1);
}

body.dark-theme .tender-tab-btn.active {
    color: #60a5fa;
    background: #1e293b;
    border-bottom-color: #60a5fa;
}

/* Section View Toggle - Dark Mode */
body.dark-theme .sections-view-toggle {
    background: #1e293b;
    border-bottom-color: #334155;
}

body.dark-theme .view-toggle-btn {
    background: #0f172a;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-theme .view-toggle-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

body.dark-theme .view-toggle-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

body.dark-theme .fullscreen-toggle-btn {
    background: #0f172a;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-theme .fullscreen-toggle-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    background: #1e293b;
}

body.dark-theme .fullscreen-close-btn {
    background: #0f172a;
    border-color: #f87171;
    color: #f87171;
}

body.dark-theme .fullscreen-close-btn:hover {
    background: #1e293b;
    border-color: #ef4444;
    color: #ef4444;
}

/* Sidebar Layout - Dark Mode */
body.dark-theme .modal-sections-nav {
    background: #0f172a;
    border-right-color: #334155;
}

body.dark-theme .modal-sections-item {
    border-bottom-color: #334155;
    color: #94a3b8;
}

body.dark-theme .modal-sections-item:hover {
    background: #1e293b;
    color: #f1f5f9;
}

body.dark-theme .modal-sections-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

body.dark-theme .modal-sections-item .nav-count {
    background: #334155;
    color: #94a3b8;
}

body.dark-theme .modal-sections-content {
    background: #1e293b;
}

body.dark-theme .sidebar-section-title {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

body.dark-theme .sidebar-field {
    border-bottom-color: #334155;
}

body.dark-theme .sidebar-field-header .field-num {
    color: #60a5fa;
}

body.dark-theme .sidebar-field-header .field-label {
    color: #f1f5f9;
}

body.dark-theme .sidebar-field-value {
    color: #cbd5e1;
}

body.dark-theme .no-fields {
    color: #64748b;
}

/* Full View - Dark Mode */
body.dark-theme .full-view-section {
    background: #1e293b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

body.dark-theme .full-view-section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.dark-theme .full-view-section-content {
    background: #1e293b;
}

body.dark-theme .full-view-field {
    border-bottom-color: #334155;
}

body.dark-theme .full-view-field-header .field-number {
    color: #60a5fa;
}

body.dark-theme .full-view-field-header .field-label {
    color: #f1f5f9;
}

body.dark-theme .full-view-field-value {
    color: #cbd5e1;
}

/* Content */
body.dark-theme .tender-modal-content {
    background: #0f172a;
}

/* Sections */
body.dark-theme .tender-section {
    background: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

body.dark-theme .tender-section h3 {
    color: #f1f5f9;
    border-bottom: 2px solid #60a5fa;
}

/* Section Items (dla Sekcji) */
body.dark-theme .section-item {
    background: #1e293b;
    border-left: 4px solid #60a5fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

body.dark-theme .section-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

body.dark-theme .section-header {
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

body.dark-theme .section-header strong {
    color: #60a5fa;
}

body.dark-theme .section-header i {
    color: #64748b;
}

body.dark-theme .section-content {
    color: #cbd5e1;
    background: #0f172a;
}

/* Details List */
body.dark-theme .detail-row {
    border-bottom: 1px solid #334155;
}

body.dark-theme .detail-row dt {
    color: #94a3b8;
}

body.dark-theme .detail-row dd {
    color: #f1f5f9;
}

/* Links */
body.dark-theme .tender-link {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.5);
}

body.dark-theme .tender-link:hover {
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.7);
}

/* Documents Helper - Dark Mode */
body.dark-theme .documents-helper {
    background: transparent;
}

body.dark-theme .doc-section {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

body.dark-theme .doc-section-header {
    color: #f1f5f9;
}

body.dark-theme .doc-section-header i {
    color: #60a5fa;
}

body.dark-theme .doc-section-value {
    color: #cbd5e1;
}

body.dark-theme .copy-btn {
    background: #0f172a;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-theme .copy-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

body.dark-theme .copy-btn.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

body.dark-theme .doc-helper-text {
    color: #94a3b8;
}

body.dark-theme .doc-google-link {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

body.dark-theme .doc-google-link:hover {
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.5);
}

/* Results View Styles */
.results-view {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.result-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.result-card-header i {
    font-size: 16px;
}

.result-card-content {
    padding: 20px;
}

/* Winner Card */
.winner-card .result-card-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.winner-card .result-card-header i {
    color: #fef3c7;
}

.winner-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.4;
}

.winner-price {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.winner-price .price-label {
    color: #92400e;
    font-weight: 500;
    font-size: 14px;
}

.winner-price .price-value {
    font-size: 20px;
    font-weight: 700;
    color: #d97706;
}

/* Contract Card */
.contract-card .result-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    color: #64748b;
    font-size: 14px;
}

.result-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

/* Comparison Card */
.comparison-card .result-card-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.comparison-row {
    display: flex;
    gap: 16px;
}

.comparison-item {
    flex: 1;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.comparison-item.lowest {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.comparison-item.highest {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.comparison-item.lowest .comparison-value {
    color: #059669;
    font-size: 16px;
    font-weight: 700;
}

.comparison-item.highest .comparison-value {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
}

/* Results View - Dark Mode */
body.dark-theme .results-view {
    background: transparent;
}

body.dark-theme .result-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

body.dark-theme .winner-name {
    color: #f1f5f9;
}

body.dark-theme .winner-price {
    background: rgba(245, 158, 11, 0.15);
    border-left-color: #f59e0b;
}

body.dark-theme .winner-price .price-label {
    color: #fbbf24;
}

body.dark-theme .winner-price .price-value {
    color: #fbbf24;
}

body.dark-theme .result-row {
    border-bottom-color: #334155;
}

body.dark-theme .result-label {
    color: #94a3b8;
}

body.dark-theme .result-value {
    color: #f1f5f9;
}

body.dark-theme .comparison-item.lowest {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

body.dark-theme .comparison-item.highest {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

body.dark-theme .comparison-label {
    color: #94a3b8;
}

body.dark-theme .comparison-item.lowest .comparison-value {
    color: #34d399;
}

body.dark-theme .comparison-item.highest .comparison-value {
    color: #f87171;
}

/* Footer Buttons */
body.dark-theme .tender-modal-footer {
    background: #0f172a;
    border-top: 2px solid #334155;
}

/* 🌙 DARK MODE - BORDER BUTTONS */
body.dark-theme .btn-add-to-calendar {
    border-color: #475569;
    background: transparent;
    color: #cbd5e1;
}

body.dark-theme .btn-add-to-calendar:hover {
    background: #1e293b;
    border-color: #64748b;
}

body.dark-theme .btn-remove-from-calendar {
    border-color: #991b1b;
    background: transparent;
    color: #fca5a5;
}

body.dark-theme .btn-remove-from-calendar:hover {
    background: #450a0a;
    border-color: #dc2626;
}

body.dark-theme .btn-watch-tender {
    border-color: #475569;
    background: transparent;
    color: #cbd5e1;
}

body.dark-theme .btn-watch-tender:hover {
    background: #422006;
    border-color: #fbbf24;
    color: #fde68a;
}

body.dark-theme .btn-watch-tender.active {
    background: #422006;
    border-color: #fbbf24;
    color: #fde68a;
}

body.dark-theme .btn-watch-tender.active:hover {
    background: #713f12;
    border-color: #f59e0b;
}

body.dark-theme .btn-hide-tender-modal {
    border-color: #475569;
    background: transparent;
    color: #cbd5e1;
}

body.dark-theme .btn-hide-tender-modal:hover {
    background: #450a0a;
    border-color: #fca5a5;
    color: #fca5a5;
}

/* Loading */
body.dark-theme .tender-modal-loading {
    color: #94a3b8;
}

body.dark-theme .spinner {
    border: 4px solid #334155;
    border-top-color: #60a5fa;
}

/* Error */
body.dark-theme .tender-modal-error h3 {
    color: #f87171;
}

body.dark-theme .tender-modal-error p {
    color: #94a3b8;
}

/* Deadline Circle - pozostaje taki sam (kolorowy) */
/* Czerwone kółko deadline zachowuje swoje kolory w dark mode */
body.dark-theme .deadline-number,
body.dark-theme .deadline-label {
    background: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

body.dark-theme .deadline-text {
    background: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: inherit !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Remove button */
body.dark-theme .tender-modal-remove {
    background: #991b1b !important;
}

body.dark-theme .tender-modal-remove:hover {
    background: #7f1d1d !important;
}
/* 🔥 NAVIGATION ARROWS */
.tender-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tender-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.tender-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.tender-nav-prev {
    left: 20px;
}

.tender-nav-next {
    right: 20px;
}

/* Dark mode */
body.dark-theme .tender-nav-arrow {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.3);
}

body.dark-theme .tender-nav-arrow:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(148, 163, 184, 0.6);
}

/* Disabled state */
.tender-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tender-nav-arrow:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
}