/*
This is an extension of the modified main theme CSS. Applies to the "details" pages of the listed browsers.

*/

/*** BROWSER MORE INFORMATION PAGES ***/

.browser-img {
  width: 250px;
  height: auto;
}

/* Create two equal columns with float */
.column {
  float: left;
  width: 50%;
  padding: 15px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Style cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 16px;
  text-align: center;
  background-color: #f1f1f1;
}

/* Second nav */

.morenav {
  margin: auto;
  width: 400px;
  background-color: #1a1a1a;
  color: #d4d4d4;
  font-size: 1.25em;
  padding: .2rem .2rem;
}

.morenav a {
  color: #d4d4d4;
}

.morenav a:hover {
  color: #fff;
  background-color: #000;
  padding: .3rem .3rem;
  transition: all 0.3s;
}

/* Button styling */

.button {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: #000;
  text-align: center;
  text-shadow: none;
  margin: 0 0 .5rem 0;
  padding: .4rem 1.5rem;
  border-radius: .4rem;
  border: 2px solid transparent;
  vertical-align: middle;
  transition: all 0.2s;
}

.button:hover {
  background: #fff;
  color: #0098ca;
  border-color: #0098ca;
  cursor:pointer;
}

/* Call out */

.callout {
  text-align: center;
  background: #eff8fc;
  font-size: 1.3em;
  color: #00456e;
}

.callout a:hover {
  color: #00456e;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
      .column {
            width: 100%;
      }
}
