.sidify-accordion-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 25px 0;
}

.sidify-accordion-box summary {
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}
.sidify-accordion-box summary::-webkit-details-marker {
    display: none;
}

.sidify-accordion-box summary::after {
    content: "▼";
    margin-left: auto;
    font-size: 10px;
    color: #2bb673;
    transition: transform 0.2s;
}

.sidify-accordion-box[open] summary::after {
    transform: rotate(180deg);
}

.sidify-accordion-box .title-bar {
    display: inline-block;
    width: 6px;
    height: 18px;
    background-color: #2bb673;
    margin-right: 8px;
    border-radius: 2px;
}

.accordion-content {
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.sidify-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}

.sidify-table th {
    background-color: #2bb673;
    color: white;
    padding: 8px 10px;
}

.sidify-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    color: #555;
}
		.sidify-tool-review-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
    font-family: inherit;
}

.tool-header {
    background: #f4f8f6;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.tool-number {
    background: #2bb673;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    margin-right: 12px;
}

.tool-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
	border-left: none;
}

.tool-badge {
    margin-left: auto;
    font-size: 11px;
    background: #e1f3ea;
    color: #2bb673;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.tool-body {
    padding: 15px 20px;
    font-size: 14px;
}

.tool-section {
    margin-bottom: 12px;
    color: #444;
}

.tool-section p {
    margin: 4px 0 0 0;
    color: #666;
}

.tool-row {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.tool-col {
    flex: 1;
    font-size: 13px;
}

.tool-col span {
    display: block;
    margin-top: 2px;
    color: #666;
}

/* --- Wiederverwendbare Farb-Klassen für Icons (mit rechtem Abstand) --- */
.text-success {
    color: #2bb673;
    margin-right: 6px;
}

.text-warning {
    color: #e67e22;
    margin-right: 6px;
}
@media (max-width: 1024px) {
    .tool-row {
        flex-direction: column;
        gap: 12px;
    }
}
/* --- Responsive Anpassung für Smartphones --- */
@media (max-width: 600px) {
    .tool-row {
        flex-direction: column;
        gap: 8px;
    }
}	