/* Container */
.vtp-container {
    display: flex;
    flex-direction: row;
    background-color: #f1f1f1;
    padding-top: 20px;
}

/* Tabs */
.vtp-tabs {
    flex: 1;
    border-radius: 8px;
    margin-right: 20px;
}

.vtp-tabs button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.95);
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-weight: 700;
}

.main-title {
	line-height: 25px;
    font-weight: 300;
    margin-left: 20px;
    font-size: 20px;
	display: none;
}

.vtp-tabs button.active {
	color: #2e86c7;
    background-color: #e7f1f9;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px -1px, rgba(0, 0, 0, 0.06) 0 2px 4px -1px;
	border-radius: 10px;
}

.vtp-tabs button:focus {
    outline: none;
}

/* Tab content */
.vtp-tabcontent {
    flex: 4;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    display: none;
}

.vtp-tabcontent.active {
    display: block;
}

.vtp-tabcontent h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.vtp-tabcontent p {
    font-size: 16px;
}
