body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
}


/* 🔷 ********************************* приложение ************************************************/
.app {
    display: flex;
    flex-direction: column;
/*    min-height: 100vh; */
}


/* 🔝 ********************************* верхняя панель ********************************************/
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;
    background: #2c3e50;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.topbar button {
    margin-left: 10px;
    padding: 5px 10px;
    cursor: pointer;
}


/* 📊 ********************************* контент **************************************************/
.content {
    flex: 1;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 20px;
}


/* 📌 ********************************* таблица *************************************************/
.table {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    border-collapse: collapse;
}


/************************************** строка **************************************************/
.row {
    display: grid;
    grid-template-columns: 150px repeat(4, 1fr);
    background: white;
    padding: 5px;
    border-radius: 4px;
}

/************************************** заголовок строки ****************************************/
.row.header {
    background: #dfe6e9;
    font-weight: bold;
}