/* Component: Chip
 * Description: Styles a chip component with a deep background color, rounded corners, 
 *              padding, white text, and fit-content width. Designed for use as a label or interactive element.
 */


.smd-component_chip {
    background-color: var(--color-background-deep);
    border-radius: 15px;
    padding: 10px;
    text-decoration: none;
    color: white;
    width: fit-content;
}