﻿.details-pliable {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 0px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.details-pliable summary {
    cursor: pointer;
    font-weight: 700;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
    margin: 0px;
    padding: 0px;
}

.details-pliable hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 8px 0px;
    padding: 0px;
}

.details-pliable p {
    margin: 0px;
    padding: 0px;
}

.details-pliable span {
    display: inline-block;
    border: #e5e7eb solid 1px;
    border-radius: 8px;
    margin: 4px;
    padding: 4px;
    font-size: small;
}

.details-pliable .btn {
    width: 14px;
    height: 14px;
}


summary.summary-pliable {
    list-style: none;
    cursor: pointer;
}
summary.summary-pliable::-webkit-details-marker {
    display: none;
}
summary.summary-pliable .chevron {
    display: inline-block;
    transition: transform 0.15s ease;
    margin-right: 6px;
    color: #dd183b;
}
details[open] > summary.summary-pliable .chevron {
    transform: rotate(90deg);
}
