        /*
Ενδεικτικοί επιλογείς για τη διαμόρφωση του στυλ

Μπορείτε να προσθέσετε τις δηλώσεις στους παρακάτω κανόνες και να εμπλουτίσετε με δικούς σας κανόνες.
*/
        /* Χρειάζεται για να φανούν οι σημαίες στους φυλλομετρητές chrome-based από Windows 10 */
        
        @font-face {
            font-family: 'TwemojiMozilla';
            src: url('TwemojiMozilla.ttf');
        }
        
        body {
            margin: 40px;
            font-family: 'Open Sans', 'TwemojiMozilla';
            /* Η γραμματοσειρά open sans φορτώνεται στο αρχείο html*/
            background-color: #fff;
            color: #444;
        }
        
        .game-panel {
            display: grid;
            /* ... */
            grid-gap: 5px;
            grid-template-columns: 1fr 4fr;
            height: auto;
        }
        
        @media (max-width: 800px) {
            /* ενδεικτικά */
            /*  ... */
            body {
                /* background-color: yellow; */
                background-color: #fff;
            }
            .game-panel {
                grid-template-columns: auto;
            }
            .flexBoxC {
                display: flex;
                flex: 1 0 100%;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
            }
            .flexBtn {
                flex-direction: row;
                justify-items: center;
                width: 100%;
                flex-grow: 1;
                /* background-color: cornsilk; */
            }
            #my-country {
                display: flex;
                flex-direction: column;
            }
            #btn-next-round {
                width: 100%;
                padding: 5px 5px 5px 5px;
                margin: 5px 15px 5px 15px;
                justify-self: center;
            }
            #btn-new-game {
                width: 100%;
                padding: 5px 5px 5px 5px;
                margin: 5px 15px 5px 15px;
                justify-self: center;
            }
            #msg {
                text-align: left;
                font-size: 1em;
                font-weight: normal;
            }
        }
        
        #my-country {
            display: flex;
            background-color: #708090;
            flex-direction: row;
            color: white;
            justify-content: flex-start;
            align-items: center;
        }
        
        .sidebar {
            width: 100%;
            height: 30px;
            background-color: #ddd;
            position: sticky;
            top: 5px;
            z-index: 100;
            /* display: block; */
        }
        
        .score {
            display: flex;
            flex-direction: column;
            background-color: #ff3399;
            color: white;
            grid-row: 1/span 4;
            justify-items: center;
            align-content: center;
        }
        
        #stackingPanel {
            position: relative;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            z-index: 0;
        }
        
        #neighbours-panel {
            display: flex;
            position: relative;
            flex-direction: row;
            flex-wrap: wrap;
            color: white;
            /* justify-content: flex-start; */
            justify-items: stretch;
            align-items: flex-end;
            background-color: white;
            z-index: 0;
        }
        
        #overlay {
            /*  display: flex; */
            position: absolute;
            display: block;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            height: 100%;
            z-index: 2;
            /* background-color: rgba(0, 0, 0, 0.5); */
            background-color: gray;
            /* border: 1px solid black; */
            border-radius: 5px;
            opacity: 0.4;
        }
        
        #msg {
            position: absolute;
            width: 350px;
            height: 50px;
            top: 25%;
            left: 15%;
            text-align: center;
            font-size: 2em;
            font-weight: bold;
            /* background-color: greenyellow; */
            z-index: 5;
        }
        
        .neighbour {
            flex: auto;
            flex-direction: column;
            flex-grow: 1;
            height: 200px;
            color: black;
            border-style: solid;
            border-width: 2px;
            border-radius: 5px;
            border-color: white;
            margin: 5px;
            padding: 5px;
            width: 17%;
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .was-clicked.neighbour-is-valid {
            border-color: green;
        }
        
        .was-clicked.neighbour-is-invalid {
            border-color: red;
        }
        
        .neighbour:not(.was-clicked) {}
        
        #my-country-flag {
            font-size: 4em;
            position: relative;
            padding-left: 20px;
        }
        
        #my-country-name {
            font-size: 1.5em;
            position: relative;
            padding-left: 20px;
        }
        
        #my-neighbor-flag {
            font-size: 4em;
            position: relative;
            top: 0px;
        }
        
        #my-neighbor-name {
            font-size: 1.5em;
            position: relative;
            text-align: center;
            bottom: 0px;
        }
        
        #next-round-panel {}
        
        #progress {
            width: 0%;
            height: 30px;
            color: white;
            background-color: blue;
            border-radius: 5px;
        }
        /* ειδικά για τους φυλλομετρητές που προέρχονται από τον chrome καθώς 
υποστηρίζουν λιγότερο καλά το στοιχείο progress από ότι ο firefox,
όσον αφορά το CSS (που και σε αυτόν έχει προβληματική υποστήριξη)
*/
        
        #progress::-webkit-progress-bar {
            border-radius: 5px;
        }
        
        button {
            width: 120px;
            height: 50px;
            text-align: center;
            line-height: 1.1em;
            font-size: 0.8em;
            margin-bottom: 10px;
        }
        
        .flexBoxR {
            display: flex;
            margin: 0px 20px 20px 20px;
            flex-direction: row;
            justify-content: space-between;
        }
        
        .flexBoxC {
            display: flex;
            /* flex-wrap: wrap;
            flex-flow: column; */
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            flex: 1;
            /* background-color: chartreuse; */
        }
        
        .flexBtn {
            display: flex;
        }