.umb-box-header {
    width: 100%;
    margin-bottom: 25px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 10px), 1fr));
    grid-auto-flow: dense;
    grid-gap: 10px;
    overflow-y: auto;
    max-height: 80vh;
    padding: 5px 20px;
    box-sizing: border-box;
    grid-auto-rows: minmax(80px, auto);
}

.create-button {
    margin-left: 23px;
    margin-bottom: 20px;
}

    .create-button button {
        font-size: 15px;
        color: #1b264f;
        font-weight: 600;
        padding: 5px 13px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

.usome-tagmanager .icon-search {
    position: absolute;
    color: #1b264f;
    top: 0;
    right: 0;
    margin: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}


    .usome-tagmanager .icon-search.active input {
        width: 200px;
        transition: background-color 0.3s ease;
        color: #1b264f;
    }


.icon-tag {
    font-size: 20px;
    padding: 8px;
    background:#fff;
    box-sizing: border-box;
    border-radius:3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    border-radius: 3px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

    .icon-tag:hover {
        box-shadow: 0 8px 16px rgba(27, 38, 76, 0.2);
    }


.tags-selected {
    box-shadow: 5px 0 4px 8px rgba(53, 68, 177, 0.5); /* Updated shadow color */
    background-color: #3544b1; /* Selected color */
    color: white;
    font-weight: bold;
}

.delete-button {
    margin-top: 10px;
}
.selected {
    border: 3px solid #3544b1; /* Set the initial border color */
}
    .selected:hover {
        box-shadow: 0 8px 16px rgba(27, 38, 76, 0.2);
    }


.delete-button-container {
    cursor: default !important;
    margin-left: 21px;
    margin-right: 21px;
    background-color: #3544b1; /* Tomato color */
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Updated to space-between to push items to the ends */
    padding: 0 10px;
}

.clear-section,
.delete-button {
    margin-bottom: 10px;
    background-color: white;
    color: black; /* Change text color to black */
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px; /* Adjust the font size as needed */
}

    .delete-button:hover {
        background-color: #D9534F; /* Darker shade for hover effect */
        color: white; /* Change text color on hover */
    }

.clear-section {
    margin-top: 10px; /* Adjust the margin-top value as needed */
    margin-left: 20px; /* Adjust the margin-left value as needed */
    display: flex;
    align-items: center;
}

.selected-count {
    margin-left: 1px;
    font-size: 15px;
    color: white; /* Adjust the color as needed */
    font-weight: bold;
}

/* Centering styles for uui-dialog */
uui-dialog {
    position: fixed;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}
.search-container {
    margin-top: 63px !important;
}

.icon-search input {
    border: 1px solid #3544b1; /* Set the initial border color */
}

.icon-search {
    font-size: 19px; /* Set the desired size for the search icon */
    color: black; /* Set the color to black */
}