
h3 {
  font-size: 25px;
  margin:5px;
}


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom:30px;
  padding-top:10px;
}

.card-rendered{
  width:200px;
}

.details-wrapper {
  border: 1px gray solid;
  border-radius: 5px;
  padding:10px;
  margin:10px;
  width:40%;
  min-width: 405px;
  background-color: lightgray;
  font-size: 22px;
  padding:20px;
  padding-bottom: 10px;
  text-align: left;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#status-span{
  opacity: .5;
  font-size: 18px;
}

#deck-title{
  width:100%;
  text-align: center;
  font-size: 30px;
}

#description-textarea{
  width: 100%;
  height:100px;
  font-size: 18px;
}

#tags-textarea{
  width: 100%;
  height:32px;
  font-size: 15px;
}

.details-label {
  line-height: 35px;
}

#title-input {
  width:80%;
  height:30px;
  font-size: 20px;
}

#price-select {
  font-size: 18px;
}

#maturity-rating-select {
  font-size: 18px;
}

#tags-description {
  font-size: 14px;
  opacity: .3;
  position: absolute;
  margin-top:-3px;
  width:37%;
  min-width: 405px;
}


@media only screen and (max-width: 600px) {
  /* For mobile phones: */
  .tab {
    overflow-x: scroll !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr); !important;
    grid-auto-rows: 1fr !important;
  }
  
  .tabcontent {
    padding: 5% !important;
    margin-bottom: 10% !important;
  }
  
  .details-wrapper {
    margin:0px !important;
    width:90% !important;
    min-width: 0px !important;
    padding: 5% !important;
  }
  
  #description-textarea{
    width: 90% !important;
  }
  
  
}