.head_row
{
    /*background-color: #DBE2BA;*/
    background-color: #006633;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.head_text
{
    font-size: 24px;
    color: white;
    font-style: oblique;
    padding: 20px;
}
.btn_lk
{
    font-size: 24px;
    color: white;
    font-style: oblique;
    box-sizing: border-box;
    padding: 20px;
    /*Отступ справа*/
    margin-right: 20px;
    /*Скругление*/
    border-radius: 30px;
    background-color: #003333;
    text-decoration: none;
}
.btn_lk:hover
{
    background-color: black;
}
.banner_row
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;   
}
.banner_row::before
{
    content: "";
    background-image: url('./image/banner.jpg');
    opacity: 0.55;
    position: absolute;
    z-index: -1;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.banner_slogan
{
    color: #006633;
    font-weight: bolder;
    font-size: 48px;
    font-style: italic;
}
.menu_box
{
    width: 100%;
    background-color: #F2EAD7;
    display: flex;
    flex-direction: row;
    
}
.menu_item
{
    color: #006633;
    padding: 25px;
    font-style: italic;
    font-size: x-large;
    text-decoration: none;
}
.menu_item:hover
{
    color: white;
    background-color: #006633;
}
.news_box
{
    color: #006633;
    display: flex;
    flex-direction: column;
}
.news_header
{
    font-size: large;
    font-weight: bold;
    padding-top: 20px;
}
.news_text
{
    padding-top: 10px;
}
.news_date
{
    font-size: small;
    padding-top: 5px;
}
.footer{
    background-color: #006633;
    color: white;
    text-align: center;
    padding: 5px;
    margin-top: 50px;
}
.headline
{
    color: #006633;
    text-align: center;
}
.clock
{
    color: #006633;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.tab
{
    color: #006633;
    border-style: solid;
    border-width: 1px;
    border-color: #006633;
    margin: auto;
    border-spacing: 0;
}
.tab td
{
    color: #006633;
    border-style:solid;
    border-width: 1px;
    border-color: #006633;
    padding: 10px;
    text-align: center;
}
.tab select
{
    color: #006633;
    font-size: large;
    width: 100%;
}
.tab_input_text
{
    color: #006633;
    font-size: large;
    width: 100%;
}
.tab_btn
{
    color: white;
    padding: 10px;
    text-decoration: none;
    background-color: #006633;
    border-radius: 10px;
    font-size: x-large;
}
.tab_btn:hover
{
    background-color: #003333;
}
.train_header
{
    text-align: center;
    color: #006633;
}
.train_copyright
{
    display: flex;
    justify-content: center;
    padding: 20px;
}
.err
{
    text-align: center;
    color: red;
}
.green_text
{
    color: #006633;
}

#confirmationModal {
    border-radius: 8px;
    text-align: center;
}
#confirmationModal button {
    margin: 10px;
    padding: 5px 15px;
    cursor: pointer;
}
#confirmationModal button#confirm {
    font-size: x-large;
    background-color: #4CAF50;
    color: white;
    border: none;
}
#confirmationModal button#confirmYes {
    font-size: x-large;
    background-color: #4CAF50;
    color: white;
    border: none;
}
#confirmationModal button#confirmNo {
    font-size: x-large;
    background-color: #f44336;
    color: white;
    border: none;
}