﻿.table-sys {
    border: 1px solid #34495e;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 2px 3px 2px 3px;
    /*table-layout: fixed;*/
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .table-sys th {
        padding: 8px 12px;
        border: 1px solid #34495e;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: #ecf0f1;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .table-sys td {
        padding: 6px 10px;
        border: 1px solid #bdc3c7;
        text-align: center;
    }

    .table-sys tr {
        background-color: #f8f9fa;
        color: #2c3e50;
        text-align: center;
        transition: all 0.3s ease;
    }

        .table-sys tr:nth-child(odd) {
            background-color: #ecf0f1;
            color: #2c3e50;
        }

        .table-sys tr:hover {
            background-color: #3498db;
            color: #ffffff;
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
        }

    .table-sys .mobile-head {
        display: none;
    }
