* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  primaryColor: #af9a7d;
  mainWhite: #fff;
  offWhite: #f7f7f7;
  mainBlack: #222;
  mainGrey: #ececec;
  darkGrey: #cfcfcf;
  mainTransition: all 0.3s linear;
  mainSpacing: 3px;
  lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.5);
  darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);
  carskaBoja:#2a293e;
}
/* globals */
body {
  padding-top: 0px;
  color: var(--mainBlack);
  background: var(--mainWhite);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
}
h1 {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2em;
  margin-bottom: 0.75em;
}
h3 {
  font-size: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}
h4 {
  font-size: 1.2em;
  line-height: 1.25;
  margin-bottom: 1.25em;
}
h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
h6 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.tab-content {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px;
}
.btn{
    margin: 0px;
}
/* top nav */
.topnav {
  overflow: hidden;
  /*background-color: #2a293e;*/
  background-color: #56525e;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
ul li {
    text-decoration: none;
    color: white;
    display: block;
}
.topnav a:hover {
  background-color: #858282;
  color: #1d4161;
}

.active {
  background-color: #333;
  color: white;
}

.topnav .icon {
  display: none;
}
/*
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #9da19e;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
*/
#main {
  transition: margin-left .5s;
  padding: 16px;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
.customDiv{
        margin:0px;
        height:300px;
        background-color:silver;
        text-align:center;
        font-size:18px;
}
.btn btn-info btn-lg {
    float:right;
}
/* end of navbar */
}
  /* Style the search box */
#mySearch {
  width: 100%;
  font-size: 18px;
 /* padding: 11px;
  border: 1px solid #ddd;*/
  background-color: lightgrey;
}
.rooms-container {
    display: flex;
}
.room-image-container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 180px;
  margin-bottom: 20px;
}

.room-image {
  /* Images will overflow their container by default. To
    prevent this, we set max-width and max-height to 100%
    so they stay inside their container. */
  max-width: 100%;
  max-height: 100%;
}