/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18 апр. 2021 г., 12:45:49
    Author     : hixma
*/
.main_container{
    display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.products_header{
    background: lightgrey;  
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 3px;
}
.products_row{
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 3px;
}
.products_row:nth-child(odd){
   background: lightcyan; 
}
.products_row:nth-child(even){
    background: #ccffcc; 
}
.action_btns{
    margin-top: 10px;
}
.bg-light-blue{
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    
}
