:root {
    --main-color: #1C345D;
    --secondary-color: #FFFCEB;
    --dark-color: #152642;
    --secondary-dark-color: #D3D3D3;
    --almost-white: #FEFEFE;
    --alternative_white: #F9F9F9;
    --gray: #E0E0E0;
    --light-gray: #F7F7F7;
    --font-family: 'Open Sans';
    --small-font: 0.9rem;
    --red: rgba(248, 215, 218, 0.7);
    --blue: rgba(215, 228, 247, 0.7);
}

.table_grid {
    display: grid;
    grid-template-columns: auto 3fr auto;
    row-gap: 1rem;
    width: 100%;
}

.grid_row {
    display: contents;
    margin: 0.5rem 0;
}

.grid_date {
    color: var(--dark-color);
    font-size: 0.7rem;
    line-height: 2.3;
    padding: 1rem;
    border-bottom: 1pt solid var(--secondary-dark-color);
    text-align: center;
}

.grid_title {
    padding: 1rem;
    border-bottom: 1pt solid var(--secondary-dark-color);
}

.grid_action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1pt solid var(--secondary-dark-color);
}

.grid_title:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.grid_action:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.grid_row.row_white {
    background-color: white;
}

.grid_row.row_red .grid_title,
.grid_row.row_red .grid_action {
    background-color: #f8d7da;
}

.grid_row.row_yellow .grid_title,
.grid_row.row_yellow .grid_action {
    background-color: #fff3cd;
}

.grid_row.row_green .grid_title,
.grid_row.row_green .grid_action  {
    background-color: #d4edda;
}

.grid_row.in_bold .grid_title,
.grid_row.in_bold .grid_action {
    font-weight: bold;
}

.check_pic {
    height: 20px;
    width: 20px;
    cursor: pointer;
}
