body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.tab-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f1f1f1;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-content {
    border: 1px solid #ccc;
    padding: 10px;
    height: 500px;
    position: relative;
}

.tab-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.active {
    display: block !important;
}
