html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 28px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.tag-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-right: 4px;
    background: #2196f3;
    border-radius: 8px;
    color: white;
    font-size: 12px;
}

.tag-pill {
    display: inline-block;
    padding: 3px 10px;
    margin: 3px;
    border-radius: 12px;
    background: #444;
    color: white;
    cursor: pointer;
}

    .tag-pill.selected {
        border: 2px solid white;
        box-shadow: 0 0 3px white;
    }

.tag-input {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
}

.tag-editor {
    border: 1px solid #d0d7de;
    padding: 6px;
    border-radius: 6px;
    background: white;
    width: 100%;
}

.tag-input-area {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
}

    .tag-chip .remove-btn {
        margin-left: 6px;
        border: none;
        background: transparent;
        color: white;
        cursor: pointer;
    }

.tag-editor input {
    border: none;
    outline: none;
    flex-grow: 1;
    min-width: 80px;
}

.dropdown {
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: white;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .dropdown-item:hover {
        background: #f6f8fa;
    }

.color-box {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

