* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.tabs-container {
    background: #fff;
    border-bottom: 2px solid #30b3a2;
}

.tabs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.tab {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    border-radius: 5px 5px 0 0;
}

.tab:hover {
    background: #e6f3f1;
}

.tab.active {
    background: #30b3a2;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tab .material-symbols-outlined {
    font-size: 18px;
    font-weight: 200;
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.tab .tab-text {
    font-weight: 500;
}

.tab-content {
    width: 90%;
    height: 100vh;
    margin: 0 auto;
    padding: 10px;
    display: none;
    background: #f8f9fa;
    border: 2px 0 0 2px solid #30b3a2;
    border-radius: 0 0 10px 10px;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

.rts-button {
    display: inline-block;
    padding: 8px 16px;
    background: #30b3a2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.rts-button:hover {
    background: #258f83;
    transform: translateY(-2px);
}

.rts-button:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .tabs {
        justify-content: space-around;
    }

    .tab .tab-text {
        display: none;
    }

    .tab {
        padding: 15px;
    }

    .tab .material-symbols-outlined {
        font-size: 22px;
        font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
    }

    .tab-content {
        padding: 10px;
    }
}

.wp-shortcode-content {
    margin: 0;
}

.wp-shortcode-content img {
    max-width: 100%;
    height: auto;
}