main {
    padding: 10px 20px;
    overflow: hidden;
}

#beans-container .bean {
    border: 1px solid #ccc;
    margin: 3px;
    padding: 8px 9px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    height: 36px;
    display: inline-block;
    text-decoration: none;
    color: black
}
#beans-container .bean:hover {
    background: #eee;
}
#beans-container .bean.active {
    background: #ccc;
}

#beans-container #favorites-filter {
    float: left;
}

#tabs-wrapper {
    padding: 10px 0;
}

.tab-wrapper {
    margin-bottom: 22px;
}    

@media only screen and (max-width: 1300px) {
    .tab-wrapper {
        width: 100%;
    }
}

div {
    transition: width 0.25s ease-in-out, height 0.25s ease-in-out;
}

.tab-heading {
    overflow: hidden;
}

.tab-heading-left {
    float: left;
}

.tab-title {
    display: inline-block;
    margin: 0;
}

.star-favorite {
    padding-left: 10px;
    font-size: 20px;
}
.graph-container {
    position: relative;
}

.custom-legend .dp-legend {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
}

.custom-legend .dp-color-square {
    display: inline-block;
    height: 13px;
    width: 13px;
    margin: 3px;
}

 /* The Modal (background) */
 #modal-box-wrapper {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
/* Modal Box */
#modal-box {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.deployment-parameters-wrapper a {
    border: 1px solid #ccc;
    margin: 5px;
}

#modal-box-custom-header {
    float: left;
  }
  
  #modal-box-content {
    list-style: none;
  }
  
  /* The Close Button */
  #modal-box-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    float: right;
  }
    
  #modal-box-close:hover,
  #modal-box-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  } 

.loader-container {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border-radius: 6px;
}

.loader {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 90%;
    width: 37px;
    height: 37px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.no-data-message-container {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border-radius: 6px;
    text-align: center;
    padding-top: 33px;
}

.show-all-data, .show-last-five-days-data {
    display: block;
    margin: 10 auto;

}

.no-data-at-all-message-container {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border-radius: 6px;
    text-align: center;
    padding-top: 33px;
}

.response-too-long-message-container {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border-radius: 6px;
    text-align: center;
    padding-top: 33px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.filter-date {
    float: right;
}

.start-date {
    margin-right: 6px;
    margin-left: 6px;
}

.end-date {
    margin-right: 6px;
}

.tab-heading button {
    margin: 2px;
}

.resize-tab {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.pointer {
    cursor: pointer;
}

.rounded-border {
    border-radius: 0.375em;
    border: 1px solid #000000;
}

.favorite-button:hover {
    color: #000;
    background-color: #d3d4d5;
    border-color: #c6c7c8;
}

.favorite-button:active {
    color: #000;
    background-color: #9b9b9b;
    border-color: #7e7e7e;
}

.favorite-button {
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    padding: initial;
    margin-left: 0.5em;
    width: 34px;
    height: 34px;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000;
}

.favorite-button[data-favorite=false]::before {
    content: '☆';
}

.favorite-button[data-favorite=true]::before {
    content: '★';
}

#favorite-tabs-for-reordering {
    list-style: none;
    margin: 0;
    padding: 0;
}

#favorite-tabs-for-reordering > li {
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 3px 0;
    padding: 5px;
    cursor: pointer;
}

#favorite-tabs-for-reordering > li:hover {
    background-color: #f8f9fa;
}
