/* Advanced FAQ Tag Transformer Styles */
.aftt-faq-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aftt-faq-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.aftt-faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aftt-faq-item-header {
    padding: 15px 20px;
    background-color: #f7f7f7;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.aftt-faq-item-header.active {
    background-color: #efefef;
}

.aftt-faq-item-body {
    padding: 15px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    line-height: 1.6;
}

.aftt-toggle-icon {
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 22px;
    transition: transform 0.3s ease;
}

.aftt-faq-item-header.active .aftt-toggle-icon {
    transform: rotate(0deg);
}

/* Temi */
.aftt-theme-light .aftt-faq-item-header {
    background-color: #f7f7f7;
    color: #333;
}

.aftt-theme-light .aftt-faq-item-header.active {
    background-color: #e6e6e6;
}

.aftt-theme-dark .aftt-faq-item {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.aftt-theme-dark .aftt-faq-item-header {
    background-color: #333;
    color: #fff;
}

.aftt-theme-dark .aftt-faq-item-header.active {
    background-color: #444;
}

.aftt-theme-dark .aftt-faq-item-body {
    background-color: #f5f5f5;
    color: #333;
}

.aftt-theme-minimal .aftt-faq-item {
    box-shadow: none;
    border: 1px solid #eaeaea;
    margin-bottom: 15px;
}

.aftt-theme-minimal .aftt-faq-item-header {
    background-color: #ffffff;
    color: #333;
    border-bottom: none;
    padding: 15px;
}

.aftt-theme-minimal .aftt-faq-item-header.active {
    border-bottom: 1px solid #eaeaea;
}

.aftt-theme-minimal .aftt-faq-item-body {
    border-top: none;
}