/* start css reset http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, 
acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video,
select, option, input, textarea { /* <- adaugate de mine */
        margin: 0;
        padding: 0;
        border: 0;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 100%;
/*      font: inherit;*/
        vertical-align: middle;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* end css reset*/

body {
    background-color: rgb(0,0,0);
    color: white;
    text-align: center;
    }
header {
    display: table;
    vertical-align:middle;
    width: 100vw;
    height: 10vh;
    background-color: rgb(192,192,192);
    }
a {
    color: white;
    text-decoration: none;
    }
#div_fixed_logo {
    position: fixed;
    top: 1vh;
    left: 2vw;
    text-decoration: none;
    padding: 0;
    color: rgb(255,255,255);
    font-size: 3vh;
    font-weight: bold;
    }
#div_all {
    width: 100vw;
    height: 100vh;
    background-color: rgb(127,127,127);
    text-align: center;
    display: table;
    }
#div_top {
    width: 100vw;
    height: 5vh;
    background-color: rgb(63,63,63);
    text-align: center;
    /*display: table-row;*/
    display: flex;
    justify-content: center;
    align-items: center;
    }
#div_menu {
    /*width: 100vw;*/
    max-width: fit-content;
    /*height: 4vh;
    background-color: rgb(255,0,0);*/
    text-align: center;
    font-size: 2.5vh;
    font-weight: bold;
    text-decoration: none;
    }
#div_main {
    width: 100vw;
    height: 95vh;
    /*background-color: rgb(127,127,127);*/
    text-align: center;
    /*display: table;*/
    display: flex;
    font-size: 2vh;
    }
#div_left {
    width: 10vw;
    height: 95vh;
    background-color: rgb(191,191,191);
    text-align: center;
    /*display: table-cell;*/
    display: flex;
    }
#div_center {
    width: 80vw;
    height: 95vh;
    /*background-color: rgb(0,128,0);*/
    /*text-align: center;*/
    display: table-cell;
    /*align-items: center;*/
    justify-content: center;
    }
#div_right {
    width: 10vw;
    height: 95vh;
    background-color: rgb(191,191,191);
    text-align: center;
    /*display: table-cell;*/
    display: flex;
    }
form {
    display: inline;
    }
#titlu_nume_meci {
    font-size: 2.5vh;
    }
#titlu_detalii_meci {
    font-size: 2.3vh;
    }
#odds_table {
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(95,95,95);
    border: 0.1vmin solid rgb(127,127,127);
    border-collapse: collapse;
    font-size: 2.4vh;
    }
#odds_table th, td {
    border: 0.1vmin solid rgb(127,127,127);
    border-collapse: collapse;
    height: 3.8vh;
    width: 6vw;
    text-align: center;
    }
