/* Açıklama Kutusu */
.sy-info-box {
    background: #f8f8f8;
    border-left: 4px solid #444;
    padding: 14px 18px;
    margin: 10px 0 20px 0;
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 1.55;
}

.sy-info-box p {
    margin: 4px 0;
}

/* Grid – Yeni Sıra */
.sy-header, .sy-order-item {
    display: grid;
    grid-template-columns:
        120px   /* Sipariş No */
        120px   /* Tarih */
        120px   /* Durum */
        120px   /* Net Kâr(2) */
        120px   /* Brüt Kâr(1) */
        120px   /* Gönderim */
        120px   /* Toplam */
        180px   /* Müşteri */
        1fr;    /* Ürün */
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    font-family: Roboto, Arial, sans-serif;
}

/* Header */
.sy-header {
    font-weight: 600;
    color: #666;
    background: #f8f8f8;
}

/* Satırlar */
.sy-order-item:hover {
    background: #f3f3f3;
}

.sy-col-id a {
    color: #c00;
    font-weight: 600;
    text-decoration: none;
}

.sy-col-id a:hover {
    text-decoration: underline;
}

/* Kâr Sütunları */
.sy-col-net,
.sy-col-brut {
    font-weight: 600;
    color: #111;
}

/* Gönderim */
.sy-col-ship {
    font-weight: 600;
    color: #444;
}

/* Toplam */
.sy-col-total {
    font-weight: 600;
    color: #000;
}