.supplier-offers-events-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.supplier-offers-events-sidebar {
    width: 280px;
    min-width: 240px;
    border: 1px solid #e5e9f2;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    height: fit-content;
}

.supplier-offers-events-body {
    flex: 1;
    min-width: 0;
}

.supplier-offers-events-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.supplier-offers-events-sidebar-title {
    font-weight: 600;
}

.supplier-offers-draft-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow: auto;
}

.supplier-offers-draft-item {
    border: 1px solid #e5e9f2;
    border-radius: 6px;
    padding: 8px 10px;
    background: #f9fafc;
}

/* Transit color markers for Draft offers (Events sidebar)
   - If only T1 exists: blue marker
   - If only T2 exists: green marker
   - If both (or neither): default styling
*/
.supplier-offers-draft-item.supplier-offers-draft-item-t1 {
    border-left: 4px solid #2d9cdb;
}

.supplier-offers-draft-item.supplier-offers-draft-item-t2 {
    border-left: 4px solid #83c340;
}

.supplier-offers-draft-title {
    font-size: 13px;
    font-weight: 600;
    color: #2f3a4a;
}

.supplier-offers-draft-meta {
    font-size: 12px;
    color: #4c566a;
    margin-top: 4px;
}

.supplier-offers-draft-extra {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.supplier-offers-draft-week {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.supplier-offers-draft-empty {
    font-size: 13px;
    color: #6c757d;
    padding: 8px 4px;
}

@media (max-width: 1200px) {
    .supplier-offers-events-layout {
        flex-direction: column;
    }

    .supplier-offers-events-sidebar {
        width: 100%;
    }
}
