/* Стили страницы «air_curtains_cases_list». Вынесены из <style> в шаблоне без правки правил.
 * Ссылка стоит ровно там, где стоял блок: порядок в каскаде сохранён. */

* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
            background: var(--slate-50);
            color: var(--slate-900);
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--slate-200);
        }

        h1 {
            font-size: 1.6rem;
        }

        .btn {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 8px;
            background: var(--blue-600);
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
        }

        #loading, #empty {
            color: var(--slate-500);
            padding: 40px 0;
            text-align: center;
        }

        #empty { display: none; }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            text-align: left;
            padding: 10px 8px;
            border-bottom: 1px solid var(--slate-200);
            font-size: 0.9rem;
        }

        th {
            color: var(--slate-500);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        a.case-link {
            color: var(--blue-600);
            font-weight: 600;
            text-decoration: none;
        }

        a.case-link:hover {
            text-decoration: underline;
        }
