@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    margin: 0;
    padding: 0;
}

h1{
    font-size: 26px;
    font-weight: 500;
}

.tableWrapper{
    max-width: 500px;
    width: 100%;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tableObjectName{
    width: 100%;
    padding: 15px;
    background: #424242;
}

.tableMonoblockName{
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.working{
    background: #f5f5f5;
}

.notWorking{
    background: #ff9191;
}

.tableObjectName h2{
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

.tableMonoblockName h3{
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}


body {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 768px){
    body{
        padding: 30px 20px;
    }

    h1{
        font-size: 22px;
    }
}