.divided-pill-container {
    display: flex;
    align-items: center;
    height: 24px;
}

.divided-pill {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.left-divided-pill {
    background-color: #4d4d4d;
    color: white;
    border-radius: 9999px 0 0 9999px;
    padding-right: 16px; /* Extra space for slant */
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
    margin-right: -10px; /* Pull elements closer */
    z-index: 1;
}

.right-divided-pill {
    color: white;
    border-radius: 0 9999px 9999px 0;
    padding-left: 16px; /* Extra space for slant */
}

.green-pill {
    background-color: #28a745;
}

.red-pill {
    background-color: #dc3545;
}

.black-pill {
    background-color: #333;
}