/* The Overlay (background) */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #1c1c1c;
    opacity: .9;
    color: #d9d9d9;
    overflow-x: hidden;
    transition: 0.5s;
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.trigger-warning {
  	background-color: #282f33;
  	color: white;
  	font-size: 11px;
  	padding: 4px 3px;
  	margin: 3px;
	display: flex; align-items: center;
	font-weight: bold; 
}

        
/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
    background: #fff;
    box-shadow: none;
}

/* Create an active/current tablink class */
.tab button.active {
        background: #0076c5;
    color: #fff;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding-top: 10px;
} 
