﻿/* فایل styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f3f4f6;
    color: #333;
    direction: rtl;
}

.table-container {
    display: grid;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    padding: 10px;
    border-radius: 8px;
    align-items: center;
}

.table-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-align: center;
}

.table-row {
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center;
    transition: background-color 0.3s;
}

    .table-row:hover {
        background-color: #f1f8ff;
    }

    .table-row div {
        padding: 8px 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .text-right{
        text-align:right;
    }