JSFiddle - React, Tailwind, and code Playground
by artgas_pro
HTML
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Загальний звіт по номенклатурі та інвойсах</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Базові стилі та скидання */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
color: #1e293b;
padding: 1.5rem;
min-height: 100vh;
line-height: 1.4;
}
.report-card {
max-width: 100%;
margin: 0 auto;
background-color: #ffffff;
padding: 1.5rem;
border-radius: 0.75rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
border: 1px solid #e2e8f0;
}
.report-header {
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid #f1f5f9;
}
.report-title {
font-size: 1.25rem;
font-weight: 700;
color: #0f172a;
}
.report-subtitle {
font-size: 0.75rem;
color: #64748b;
margin-top: 0.25rem;
}
/* Таблиця */
.table-responsive {
overflow-x: auto;
border: 1px solid #cbd5e1;
border-radius: 4px;
}
.report-table {
width: 100%;
border-collapse: collapse;
text-align: left;
font-size: 0.8125rem;
background-color: #ffffff;
}
/* Дворівневий заголовок */
.report-table th {
border: 1px solid #94a3b8;
...