.tab-container {
            display: flex;
            justify-content: left;
        }

        .tab {
            background-color: #292929;
			color:white;
            padding: 10px 20px;
            cursor: pointer;
			border-bottom: 3px solid #1f1f1f !important;
        }

        .tab-content {
            display: none;
        }

        .active-tab {
            background-color: #292929;
			color:white;
			border-bottom: 3px solid #6674DE !important;
        }

        .active-content {
            display: block;
        }
.tab-button.active {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-bottom: 2px solid #f00;
}
		