.itp-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.itp-tabs {
    display: flex;
    margin-bottom: 10px;
}

.itp-tab {
    padding: 10px;
    cursor: pointer;
    border: 1;
	border-radius: 10px 0 0 10px;
    outline: none;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.itp-tab.active {
    font-weight: bold;
}

#itp-iframe {
    flex-grow: 1;
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
}

/* Positioning the tabs */
.itp-edge-top {
    flex-direction: column;
}

.itp-edge-top .itp-tabs {
    order: -1;
    flex-direction: row;
}

.itp-edge-bottom {
    flex-direction: column;
}

.itp-edge-bottom .itp-tabs {
    order: 1;
    margin-top: 10px;
    flex-direction: row;
}

.itp-edge-left {
    flex-direction: row;
}

.itp-edge-left .itp-tabs {
    order: -1;
    margin-right: 10px;
    flex-direction: column;
}

.itp-edge-right {
    flex-direction: row-reverse;
}

.itp-edge-right .itp-tabs {
    margin-left: 10px;
    flex-direction: column;
}
