.v-shape-container {
    position: relative;
    width: 24px; /* Match this to the size of other SVG containers */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-shape-container svg {
    position: absolute;
}

.middle-svg {
    width: 22px;  /* Same size as the other sidebar SVGs */
    height: 22px;
}

.left-svg, .right-svg {
    width: 12px;  /* Smaller size for the left and right SVGs */
    height: 12px;
}

.left-svg {
    left: -2px;  /* Adjust positioning to create the V-shape */
}

.right-svg {
    right: -2px; /* Adjust positioning to create the V-shape */
}
