.xy-post-tabs .tabs {
    display: flex;
    cursor: pointer;
    padding: 20px 0;
}

.xy-post-tabs .tab {
    padding: 10px 15px;
    transition: background-color 0.3s;
    border-radius: 10px;
    background: var(--muted-bg-color);
    margin: 0 5px;
    font-size: 14px;
    user-select: none;
}

.xy-post-tabs .tab .fa {
    margin-right: 5px;
}

.xy-post-tabs .tab.active {
    color: #fff;
    background-color: #556af1;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.xy-post-tabs .xy-tab-content {
    display: none;
}

.xy-post-tabs .xy-tab-content:first-of-type {
    display: block;
}

.xy-post-tabs .panel-heading {
    cursor: pointer;
}

.xy-post-tabs .panel-heading .fa {
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
    padding: 5px;
    color: #556af1;
}

.xy-post-tabs .panel-heading:not(.collapsed) .fa {
    transform: rotate(0deg);
}

.xy-post-tabs .panel {
    margin-bottom: 10px;
}
