/* Clear Tag Form Styles */

.clear-tag-form {
    font-family: 'Consolas', monospace;
    font-size: 11px;
    color: #000;
    background: transparent;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

/* Header Bar */
.clear-tag-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 2px 0;
    border-bottom: 1px solid #ccc;
}

.clear-tag-header-text {
    font-weight: bold;
    font-size: 12px;
}

.clear-tag-status {
    font-weight: bold;
    color: #000;
}

/* Content Area */
.clear-tag-content {
    padding: 5px 0;
    min-height: 150px;
    max-height: 300px;
    overflow: hidden;
}

