/* Shared HouseGrade SVG Icons
   Include: <link rel="stylesheet" href="https://static.housegrade.org/custom-pages/shared/icons/icons.css">
*/

.arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 5 8 11 14 5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 5 8 11 14 5'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}
