/* Genel Ürün Satırı */
.uy-urun-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e5e5;
    font-family: Roboto, Arial, sans-serif;
    background: #fff;
}

/* Ürün Görseli */
.uy-urun-item img {
    width: 60px;
    height: auto;
    margin-right: 12px;
    border-radius: 4px;
    object-fit: contain;
}

/* Ürün İsmi */
.uy-urun-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/* Net Kar (2) */
.uy-urun-net {
    width: 120px;
    text-align: right;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

/* Brüt Kar (1) */
.uy-urun-profit {
    width: 120px;
    text-align: right;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/* Satış Fiyatı */
.uy-urun-price {
    width: 120px;
    text-align: right;
    margin-right: 30px;
    font-size: 16px;
    color: #111;
}

/* Silme Butonu */
.uy-delete-product {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
}

.uy-delete-product:hover {
    background: #333;
}

/* Sayfalama */
.uy-pagination {
    margin-top: 20px;
    text-align: center;
}

.uy-pagination a {
    padding: 6px 10px;
    border: 1px solid #ccc;
    margin: 0 4px;
    color: #333;
    text-decoration: none;
}

.uy-pagination a:hover {
    background: #000;
    color: #fff;
}

/* Header */
.uy-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 10px;
}

.uy-header-thumb { width: 55px; margin-right: 12px; text-align: center; }
.uy-header-title { flex: 1; text-align: left; }

.uy-header-net {
    width: 120px;
    text-align: right;
    margin-right: 30px;
}

.uy-header-profit {
    width: 120px;
    text-align: right;
    margin-right: 30px;
}

.uy-header-price {
    width: 120px;
    text-align: right;
    margin-right: 30px;
}

.uy-header-action {
    width: 80px;
    text-align: center;
}

/* Ürün Yönetimi Bilgi Kutusu */
.uy-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;
}

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