/* Blacklist Form Layout */
.blacklist-form {
    display: flex;
    /* Note: tools.css had flex, tools.css also had direction column. Merging */
    flex-direction: column;
    gap: 0;
}

.form-input-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.form-input-row input {
    flex: 1;
}

@media (max-width: 600px) {
    .form-input-row {
        flex-direction: column;
    }
}