/* Blank Line Tool Specific Styles */


.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem; 
    color: var(--text);
    cursor: pointer;
    margin-bottom: 0; 
    padding: 0;
    height: auto;
    white-space: nowrap;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.select-wrapper-new {
    display: flex;
    align-items: center;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    outline: none;
    transition: all 0.2s ease;
    min-width: 120px;
}

select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 127, 165, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

