﻿.scroll-table {
    height: 100%;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: auto;
}

.general-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .general-table th,
    .general-table td {
        white-space: nowrap;
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .general-table thead {
        background-color: #f15a29;
        color: white;
    }

    .general-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .general-table tbody tr:hover {
        background-color: #ffe5d0;
        cursor: pointer;
    }

