#filter-btn {
    float: right;
    margin: 10px 0 0 0;
}
.match-dtl {
    width: 80px;
}
.match-status-full {
    width: 80px;
}
.match-result, .match-status {
    width: 100px;
}
#games-date-wrapper {
   display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    width: 100%; 
}
.game-date-link {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    box-flex: 1;
    text-align: center;
    list-style-type: none;
    display: list-item;
    padding: 5px 10px;
    border: 1px solid #DDD;
    margin: 10px 5px;
    /* color: #6D6D6D; */
    font-weight: bold;

    background: #FEBD1C;

    color: black;
    border-color: #a81616;
    opacity: 0.6;
}
#games-date-wrapper .game-date-link:first-child {
    margin-left: 0;
}
#games-date-wrapper .game-date-link:last-child {
    margin-right: 0;
}
.game-date-today, .game-date-link:hover {
    background: #a81616;
    color: #FFF;
    border-color: #a81616;
    text-decoration: none;
    opacity: 1;
}


.comp-summary-link {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    box-flex: 1;
    text-align: center;
    list-style-type: none;
    display: list-item;
    padding: 5px 10px;
    border: 1px solid #DDD;
    margin: 10px 5px;
    /* color: #6D6D6D; */
    font-weight: bold;

    background: #FEBD1C;

    color: black;
    border-color: #a81616;
    opacity: 0.6;
}
.comp-summary-link:hover {
    background: #a81616;
    color: #FFF;
    border-color: #a81616;
    text-decoration: none;
    opacity: 1;
}



@media screen and (min-width: 0px) and (max-width: 400px) {
  #desktop { display: block; }  /* show it on small screens */
}

@media screen and (min-width: 401px) and (max-width: 1024px) {
  #desktop { display: none; }   /* hide it elsewhere */
}

.mobileHide
{ display: none;}


.highlight-date a {
    background-color: #42B373 !important;
    background-image :none !important;
    color: #ffffff !important;
}

/* Hamburger styles - manji, neutralni izgled unutar main-wrapa */
#hamburger-menu {
  display: none;
  position: static;
  z-index: 1001;
  margin: 0;
}
#hamburger-btn {
  background: none;
  border: none;
  border-radius: 0;
  padding: 8px;
  cursor: pointer;
  box-shadow: none;
  margin: 0;
}
#hamburger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #444;
  margin: 5px 0;
  border-radius: 2px;
  transition: background 0.2s;
}
#hamburger-btn:hover span {
  background: #222;
}

@media (max-width: 900px) {
  #sidebar {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1000;
    background: #fff;
    color: #222;
    width: 80vw;
    max-width: 320px;
    min-height: 100vh;
    box-shadow: 2px 0 12px rgba(0,0,0,0.18);
    padding: 18px 12px 18px 18px;
    overflow-y: auto;
  }
  #sidebar.active {
    display: block;
    animation: sidebarIn 0.2s;
  }
  #hamburger-menu {
    display: block !important;
    position: static;
    left: auto;
    top: auto;
    z-index: 1001;
    margin: 0;
  }
}
@keyframes sidebarIn {
  from { left: -320px; opacity: 0; }
  to { left: 0; opacity: 1; }
}