@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	height: 100vh;
    font-family: 'Poppins';
    display: flex;
	align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #aededf;
}
.tabs-container {
	display: flex;
	margin: 10px;
	padding: 15px;
    width: 100%;
    max-width: 520px;
    min-width: 360px;
	border-radius: 17px;
    background-color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 6px 30px 0px;	
}
header {
    position: relative;
}
.tab-content-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    height: 330px;
    transition: all 0.45s ease-in-out;
    padding: 0 17px;
}
.tab-content h2 {
    color: #3f3f3f;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 9px;
}
.tab-content {
    font-size: 0.9rem;
    min-height: 330px;
    min-width: 260px;
    overflow-x: auto;
    transition: all 0.45s ease-in-out;
}
.tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    border-right: 1px solid lightgray;
    list-style-type: none;
    padding-right: 15px;
    gap: 9px;
}
.tabs a {
    position: relative;
    display: flex;
    text-decoration: none;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #9e9e9e;
    text-align: left;
    border-radius: 9px;
    justify-content: start;
    padding: 13px;
    align-items: center;
    gap: 9px;
    transition: all 0.3s ease-in-out;
}
.tabs .active, .tabs a:hover {
    font-weight: 700;
    outline: none;
    color: #fff;
    background-color: #3f3f3f;
}