﻿/* Style the tab */
.tab {
  	overflow: hidden;
  	border: 1px solid #505456;
  	background-color: #C90019;
	color: white;
}

/* 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;
	color: white;
}

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

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