﻿.app-table-container {
    width:100%;
}
.app-table {
    width:100%;
}
.app-table-layout-fixed {
    table-layout: fixed;
}
    .app-table caption {
        padding: 0.5rem 1rem;
        color: var(--app-table-caption-color);
        text-align: center;
        caption-side: top;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .app-table thead {
        background-color: #f9fafb;
        font-weight: 600;
    }

    .app-table th, td {
        padding: 0.75rem 1rem;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .app-table tr:nth-child(even) {
        background-color: #f6f6f6;
    }

    .app-table tr:hover {
        background-color: #eef2f7;
    }


.app-compact-table {
    border-collapse: collapse;
    font-size: 13px;
    width: 100%;
}

    .app-compact-table td,
    .app-compact-table th {
        padding: 4px 6px;
        line-height: 1.2;
        border: none;
    }
